2

我正在使用简码在我的博客页面上显示PHP 日期选择器。但低于警告。

Warning: 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 'Australia/Perth' for 'WST/8.0/no DST' instead in /home/xxx/public_html/wp-content/plugins/xxx/calendar/calendar_form.php on line 48

我的服务器 PHP 版本是:5.3.19

我如何摆脱这个警告?

我试图隐藏 PHP 警告但没有成功,仍然收到警告。

error_reporting(E_ALL^ (E_WARNING | E_NOTICE));

我也尝试将时区设置为:

date_default_timezone_set('Australia/Perth');

但没有运气。

现在需要你们的帮助。谢谢...

4

1 回答 1

0

尝试这个:

 date_default_timezone_set("Australia/Perth");

或者

date.timezone = Australia/Perth

使用date_default_timezone_get();而不是date();

于 2013-04-04T09:19:42.807 回答