【发布时间】:2011-07-17 22:40:51
【问题描述】:
我在一个我已经完成的网站上突然收到以下错误,到目前为止它运行良好:
A PHP Error was encountered
Severity: Warning
Message: mktime() [function.mktime]: 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 'Antarctica/Macquarie' for 'EST/10.0/no DST' instead
这是有问题的代码:
$stamp=mktime(0,0,0,$month,$day,$year);
这里有什么问题?我怎样才能快速消除这些错误?我在很多地方都使用这种格式的mktime,并且在每个地方都会抛出错误。
【问题讨论】: