タイムゾーンの設定
カテゴリ:PHP
CentOS/Ubuntu 両対応
タイムゾーンを設定する
/etc/php.ini の [Date] セクションにタイムゾーン「date.timezone = "Asia/Tokyo"」を設定します。
[Date]
; 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"
設定を反映させるために Apache を再起動します。
CentOS の場合:
# systemctl restart httpd
Ubuntu の場合:
# systemctl restart apache2
※タイムゾーンを設定しないとPHPの警告が発生します。
公開日時:2014年09月30日 00:34:21
最終更新日時:2022年03月10日 20:59:48