Change the time zone in Codeigniter

前端 未结 7 1208
遇见更好的自我
遇见更好的自我 2021-01-11 10:37

my project is hosted on shared server and i want to change the timezone to Asia/Kolkata. i have tried setting timezone using htaccess file but failed.

7条回答
  •  温柔的废话
    2021-01-11 10:58

    Another good practice is to put it in the CI_Controller class, right in the __construct function:

    public function __construct() {
        date_default_timezone_set( 'Asia/Kolkata' );
        self::$instance =& $this;
        // the rest of the code...
    

提交回复
热议问题