我需要动态更改默认语言
我可以改变这个:
Configure::write('Config.language', 'eng');
使用:
$this->Session->write('Config.language',$this->params['language']);
Configure::write('Config.language', $this->Session->read('Config.language'));
但我无法改变这一点:
$this->Post->locale
现在我的翻译系统只显示po文件翻译,因为我无法动态更改locale
变量。我正在尝试从locale
APP/config/bootstrap.php