default timezone in PHP

前端 未结 4 719
礼貌的吻别
礼貌的吻别 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 08:55

    ;date.timezone =
    ; This is diasable text
    This is working text
    

    Get it? with this ; On some ini files you can disable some scripts/codes. You can set your time zone in php like: date_default_timezone_set('Europe/London'); And other like Europe/Amsterdam... Read more on php default timezone

提交回复
热议问题