Setting the Timezone for PHP in the php.ini file

后端 未结 6 1085
轮回少年
轮回少年 2020-11-29 09:00

I\'m trying to change the default PHP timezone to Asia/Calcutta by accessing the /etc/php5/cli/php.ini file and changing

[Date]
;          


        
6条回答
  •  暖寄归人
    2020-11-29 09:09

    You can change it in the code without touching the ini file, at the beginning of your code add:

    date_default_timezone_set('Asia/Calcutta')
    

提交回复
热议问题