K-NOTE

ポイ活とかスマホアプリ開発とか気の向くままに

当ブログの内容等の正確性は保証しません。ご利用は自己責任で!

【PHP】It is not safe to rely on the system's timezone settings

たまたまApacheのエラーログを見たら、下のようなエラーが出力されていた。

PHP Warning:  date_default_timezone_get(): 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 'Asia/Tokyo' for 'JST/9.0/no DST' instead in /var/www/test.php on line 5


すごい長いけど、要するに

date_default_timezone_get()使ってるけど、デフォルトのタイムゾーン設定してないじゃん
ってことらしい。


解決方法は、「php.ini」の「Module Settings」セクションの「date.timezone」を設定すること。
変更前は

;date.timezone =

コメントアウトされていたので、

date.timezone = "Asia/Tokyo"

と変更。


あとはApacheを再起動することで、エラーは出なくなりました。
めでたしめでたし。