タイムゾーンの設定

Fatal error: Uncaught exception ‘Exception’ with message ‘DateTime::__construct(): It is not safe to rely on the system’s timezone settings.

タイムゾーンが設定されていないことによるエラー

php.iniを設定する

vi /etc/php.ini

; Defines the default timezone used by the date functions
; http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone
; date.timezone =
date.timezone = Asia/Tokyo
そして該当のスクリプトに下記の関数も記載
date_default_timezone_set('Asia/Tokyo');
カテゴリー: PHP

コメントを残す

メールアドレスが公開されることはありません。 * が付いている欄は必須項目です