如何修复 PHP 中 date() 的警告”
我在winxp上使用XAMPP(PHP版本5.3.1)。当我尝试在本地主机上调用 time() 或 date() 函数时。它将显示警告消息,如下所示,
严重性:警告
消息:date() [function.date]:它是 依赖系统的不安全 时区设置。您需要 使用 date.timezone 设置或 date_default_timezone_set() 功能。如果您使用过任何 这些方法你仍然 收到此警告,您很可能 时区标识符拼写错误。我们 为“8.0/无 DST”选择“UTC” 相反
文件名:helpers/date_helper.php
如何禁用警告?谢谢。
I am using XAMPP(PHP Version 5.3.1) on winxp. When I try to call time() or date() function on my localhost. It will show warning message as this,
Severity: Warning
Message: date() [function.date]: 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 'UTC' for '8.0/no DST'
insteadFilename: helpers/date_helper.php
How can I disable the warning? Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
尝试在 php.ini 文件中设置 date.timezone 。或者您可以使用
ini_set()
或date_default_timezone_set()
手动设置。Try to set
date.timezone
inphp.ini
file. Or you can manually set it usingini_set()
ordate_default_timezone_set()
.您需要像这样设置默认时区:
有关此内容的更多信息,请参见 http://php.net/manual/en/function.date-default-timezone-set.php
或者您可以在日期前面使用
@
来抑制警告,但是如下所示该警告表明依赖服务器默认时区是不安全的You need to set the default timezone smth like this :
More info about this in http://php.net/manual/en/function.date-default-timezone-set.php
Or you could use
@
in front of date to suppress the warning however as the warning states it's not safe to rely on the servers default timezone您还可以使用它:
您应该在调用任何日期函数之前调用它。它接受键作为第一个参数以在运行时更改 PHP 设置,第二个参数是值。
在我弄清楚这一点之前,我已经做了这些事情:
date_default_timezone_set("Asia/Calcutta" ");
- 不起作用ini_alter()
- 它有效date_default_timezone_set("Asia/Calcutta");
- 它有效对于我来说,
init_alter()
方法让它一切正常。我正在 OSX mountain lion 上运行 Apache 2(预装)、PHP 5.3
You could also use this:
You should call this before calling any date function. It accepts the key as the first parameter to alter PHP settings during runtime and the second parameter is the value.
I had done these things before I figured out this:
date_default_timezone_set("Asia/Calcutta");
- did not workini_alter()
- IT WORKEDdate_default_timezone_set("Asia/Calcutta");
- IT WORKEDFor me the
init_alter()
method got it all working.I am running Apache 2 (pre-installed), PHP 5.3 on OSX mountain lion
这只是发生在我身上,因为
在 php.ini 中,未设置 date.timezone!
使用 php date() 函数触发了该警告。
This just happen to me because
in the php.ini the date.timezone was not set!
Using the php date() function triggered that warning.
:)
您应该更改主题“如何修复 PHP 中 date() 的警告”...
:)
You should change subject to "How to fix warning from date() in PHP"...