Change the time zone in Codeigniter

前端 未结 7 1145
遇见更好的自我
遇见更好的自我 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

    Please add the below code in the index.php file of the your Codeigniter project

     datedefaulttimezoneset(‘Asia/Kolkata’); 
    

    Or You can also change using the php.ini file.

    Also for more help visit http://www.tutorial-hub.com/top-interview-questions-and-answers-codeigniter-framework/

提交回复
热议问题