PHP5.3.2ではdate.timezoneの設定が必要
PHP5.2.4とかPHP5.2.6では、date.timezone、extension_dirは何も設定しなくても問題なかったのだが、5.3.2にアップデートすると、これらに設定をしないとエラーメッセージが表示された。
例えば、phpinfoを見てみると、「date」の項目でで以下のエラーが表示された。
date
date/time support enabled
"Olson" Timezone Database Version 2010.3
Timezone Database internal
Warning: phpinfo(): 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 warning, you most likely misspelled the timezone identifier. We selected 'Asia/Tokyo' for '9.0/no DST' instead in D:\nobuneko\phpinfo.php on line 2
といわけで、php.iniを以下のように修正し、Apacheを再起動すればエラーは解消される。
<修正前>
;date.timezone =
<修正後>
date.timezone = Asia/Tokyo
今後は、以上については必ず設定するようにしよう。