我正在使用简码在我的博客页面上显示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');
但没有运气。
现在需要你们的帮助。谢谢...