default timezone in PHP

前端 未结 4 713
礼貌的吻别
礼貌的吻别 2021-01-14 08:42

What is default timezone in php? I checked it in the php.ini which shows the following with the timezone is left blank:

[Date]
; Defines the default timezone         


        
4条回答
  •  旧时难觅i
    2021-01-14 09:01

    When not specified date.timezone defaults to the system environment variable TZ. You can use this code to check your default value date_default_timezone_get().

    Further info can be found here: http://www.php.net/manual/en/function.date-default-timezone-get.php

提交回复
热议问题