在代码点火器中定义全局路径,除了 base_url

define global path in code igniter except base_url

我如何在 codeigniter 中定义除 base-url 之外的另一个全局路径 就像我的 base url 就像 localhost/folder_name 虽然我想使用另一条路径,例如

localhost/another_folder/

在配置文件中定义

$config['variable']= 'your path'

一样使用它
$this->config->item('variable');

我认为这会根据您的要求对您有所帮助

您还可以在 Codeigniter 中设置一个 global path,例如 base_url,例如 global variable

您可以在 application/config/constants.php 文件中定义 global path,例如:

define("globel_variable","http://localhost/my_site");

所有页面都可以访问,即; controllers, models and views

要显示全局值,

echo globel_variable;