如何在Codeigniter中更改运行时的语言?

时间:2015-09-08 04:19:44

标签: php html codeigniter localization lang

我想根据用户选择的语言偏好发送简报。

并且首选项存储在数据库中并且可以正确显示。

这是扩展控制器:

class Front_Controller extends CI_Controller {

    public function __construct() {
        parent::__construct();

        if ($this->session->userdata('site_lang') == false) {
            $this->session->set_userdata('site_lang', "english");

            if ($this->agent->is_referral()) {
                redirect($this->agent->referrer());
            }
        }

        //set language
        $lang = $this->session->userdata('site_lang');
        $this->config->set_item('language', $lang);
        $this->lang->load("site", $lang);
}

这是发送电子邮件的API

class Purchase extends Front_Controller {

    public function __construct() {
        parent::__construct();
    }

    public function test() {
        $user_id = $this->input->post('user_id');
        $user = $this->User_model->get_user(array("id" => $user_id));
        //correctly get the perference

        //need the code to change language

        echo lang("hello"); //the "hello" should be based on the language preference
    }

});

我尝试在test()中设置配置,但似乎语言没有改变。

非常感谢

1 个答案:

答案 0 :(得分:1)

我不知道您究竟知道什么,但是您可以通过ci_i18n_library.zip

获得一个可能的解决方案

访问此网站了解更多详情http://jeromejaglale.com/doc/php/codeigniter_i18n enter image description here