9

我的 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" 
4

2 回答 2

22

CLI 和 webserver(以及 cgi 和 fpm)使用不同php.ini的 -files。因为您说您在浏览器中看到了正确的值,所以我猜您编辑了错误的值。在 cli 类型上

php --ini

要找出哪个是您必须编辑的。例如,它是第二行中的那个

Loaded Configuration File:         /etc/php5/cli/php.ini
于 2012-08-24T11:29:14.530 回答
1

一些服务器(如媒体寺)对特定域进行配置。因此服务器将访问 /etc/php.ini 下的通用 php.ini 文件,但浏览器访问域的 php.ini 文件。可能会发生问题

于 2012-08-24T11:37:33.363 回答