标签: php codeigniter
在config.php中,默认语言设置为" english"。但我想通过控制器更改默认语言,以便以后可以根据会话切换语言。我可以这样做吗? 我尝试了下面的代码。但是语言仍以英语显示
public function __construct() { parent::__construct(); $this->config->set_item('language', 'japanese' ); }