Change the time zone in Codeigniter

前端 未结 7 1225
遇见更好的自我
遇见更好的自我 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条回答
  •  梦毁少年i
    2021-01-11 10:57

    With CodeIgniter, the best place to set the timezone is inside the main index.php file. It's at the same level in your project structure as the system/ and application/ folders.

    Just add the following as the first line of code in the file after the opening tag:

    date_default_timezone_set('Asia/Kolkata');
    

    That should do it for all your PHP code.

    Don't forget that if you're using a database, the timezone for the database will probably be different as well. If you're using MySQL, you'll want to do a SET time_zone = "+05:30" query as soon as you open a database connection.

提交回复
热议问题