サーバを変更したら、PHPでDateTimeクラスを使った処理でExceptionエラーが出るようになった。
エラー内容
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.
とりあえずGoogle翻訳にぶち込んでみましょう。
'DateTime :: __ construct():システムのタイムゾーン設定に頼っても安全ではありません。 date.timezone設定またはdate_default_timezone_set()関数を使用するには*必須*です。
なるほど、タイムゾーンが取得できなったみたい。
修正方法
php.iniの内容を以下に書き換える。
date.timezone = Asia/Tokyo
もしくは、date_default_timezone_set()関数を事前に呼び出す。
date_default_timezone_set('Asia/Tokyo');