我的 php.ini 文件中有这个条目:
date.timezone = 'Europe/London';
但是每次我在命令行脚本中使用 DateTime() 时,我仍然会收到以下错误:
Exception: DateTime::__construct(): It is not safe to rely on the system's timezone settings.
You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier.
We selected 'Europe/London' for 'BST/1.0/DST' instead
因此,我必须在任何脚本中执行以下操作才能使其正常工作:
date_default_timezone_set('Europe/London');
还有什么可能导致此错误?
更新
我在命令行和网络浏览器中都使用了以下内容:
<?php
var_dump(ini_get('date.timezone'));
exit;
在命令行中我得到:
string(0) ""
在网络浏览器中,我得到:
string(13) "Europe/London"