使用短代码在我的博客页面上显示PHP Date Picker。但要低于警告。
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');
但没有运气。
现在需要你的帮助。感谢...
答案 0 :(得分:0)
试试这个:
date_default_timezone_set("Australia/Perth");
或
date.timezone = Australia/Perth
使用date_default_timezone_get();
代替date();