the best way to make codeigniter website multi-language. calling from lang arrays depends on lang session?

后端 未结 11 1062
情深已故
情深已故 2020-11-27 10:34

I\'m researching hours and hours, but I could not find any clear, efficient way to make it :/

I have a codeigniter base website in English and I have to add a Polish

11条回答
  •  感情败类
    2020-11-27 11:12

    Also to add the language to the session, I would define some constants for each language, then make sure you have the session library autoloaded in config/autoload.php, or you load it whenever you need it. Add the users desired language to the session:

    $this->session->set_userdata('language', ENGLISH);
    

    Then you can grab it anytime like this:

    $language = $this->session->userdata('language');
    

提交回复
热议问题