PHP5.3に移行すると、以下のような警告が出始めました。
PHP Warning: date(): 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 arning, you most likely misspelled the timezone identifier. We selected 'Asia/Tokyo' for 'JST/9.0/no DST' instead in /home/example.com/html/index.php on line 79
「date.timezome または date_default_timezone_set()しなさい」と書かれています。
ググってみると、5.1.0からはタイムゾーンを指定しないといけないみたい。
http://jp.php.net/manual/ja/function.date-default-timezone-set.php
php.iniで書く場合は以下。
date.timezone = "Asia/Tokyo"
プログラム内で設定する場合。
date_default_timezone_set('Asia/Tokyo');