php shows one hour early

后端 未结 5 1919
予麋鹿
予麋鹿 2020-12-22 13:00

php settings in php.ini:

date.timezone = Asia/Jerusalem.

My Linux server (Ubuntu) shows the correct time:

5条回答
  •  余生分开走
    2020-12-22 13:10

    You solve it by setting the timezone explicitly in your PHP scripts. You can do this with date_default_timezone_set():

    date_default_timezone_set('Asia/Jerusalem');
    

    Here is the list of PHP supported timezones.

    You may also want to try a test script calling date_default_timezone_get() to see what it's actually set to to verify that this is in fact the problem.

    List of Supported Timezones

提交回复
热议问题