【PHP】timezoneの設定

PHPで日付関連の関数を使ったら
こんなエラーが出たよー

PHP Fatal error: Uncaught exception ‘Exception’ with message ‘DateTime::__construct(): 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 g etting this warning, you most likely misspelled the timezone identifier. We selected the timezone ‘UTC’ for now, but please set date.timezone to selec t your timezone.’

デフォルトのタイムゾーンが設定されてないよー
ってことで怒られてるらしい

なので、php.iniでコメントになってるとこを
修正して問題解決!

↓こんな感じでコメントアウトされてるので
;date.timezone =

「Asia/Tokyo」を設定しよー
date.timezone = Asia/Tokyo

コメント

タイトルとURLをコピーしました