我在配置文件中有这段代码:
if (isset($_GET['language']))
{
$language = base64_decode(strtr($_GET['language'], '._-', 'ABCDlanguage48+/='));
$_SESSION["language"] = $language;
$config['language'] = $language;
}
我需要控制器__construct
功能$language
。我怎样才能做到这一点?
我在application/config/config.php
中添加了给定的代码(文件末尾(
在我的Controller
Construct
函数中添加了如下代码:
$this->data = $this->config->item('language');
现在我可以在Controller
的任何功能中使用它.
喜欢:echo $this->data;