Dealing with PHP server and MySQL server in different time zones

后端 未结 5 568
眼角桃花
眼角桃花 2020-12-13 11:30

For those of us who use standard shared hosting packages, such as GoDaddy or Network Solutions, how do you handle datetime conversions when your hosting server (PHP) and MyS

5条回答
  •  我在风中等你
    2020-12-13 12:04

    In php set timezone by in the php.ini file: ini_set("date.timezone", "America/Los_Angeles");

    or in particular page you can do like: date_default_timezone_set("America/Los_Angeles");

    In mysql you can do like: SET GLOBAL time_zone = 'America/Los_Angeles';

提交回复
热议问题