如何从我在控制器中需要的代码点火器中的配置文件中获取变量



我在配置文件中有这段代码:

if (isset($_GET['language']))
{
$language = base64_decode(strtr($_GET['language'], '._-', 'ABCDlanguage48+/='));
$_SESSION["language"] = $language;
$config['language'] = $language;
}

我需要控制器__construct功能$language。我怎样才能做到这一点?

我在application/config/config.php中添加了给定的代码(文件末尾(

在我的ControllerConstruct函数中添加了如下代码:

$this->data = $this->config->item('language');

现在我可以在Controller的任何功能中使用它.

喜欢:echo $this->data;

相关内容

  • 没有找到相关文章

最新更新