Отображение 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');
но не повезло.
Теперь вам нужна помощь. Благодаря…
попробуй это:
date_default_timezone_set("Australia/Perth");
или
date.timezone = Australia/Perth
используйте date_default_timezone_get();
вместо date();