0

MAMPでphpinfo()関数を実行したところ、php情報テーブルに埋め込まれた次の警告が表示されました。

Warning: phpinfo() [function.phpinfo]: 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 'America/New_York' for 'EST/-5.0/no DST' instead in /Applications/MAMP/bin/mamp/phpinfo.php on line 2 

php.iniファイルのdate.timezoneは「America/New_York」に設定されており、警告はphpinfoテーブルに反映されている実際の設定の3行上にあります。

この問題を解決する方法を誰かに説明してもらえますか?

4

1 に答える 1

0

.iniファイルのタイムゾーンの前後に引用符がないことを確認しますか?

date.timezone = America / New_York

http://www.php.net/manual/en/timezones.america.php#85815

于 2012-11-28T06:47:23.530 に答える