2

ショートコードを使用してブログ ページに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');

しかし運がない。

今、あなたの助けが必要です。ありがとう...

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 に答える