CakePHP PHP5.3でWarning: strtotime()エラー(´・ω・)ス | WEB系技術電脳日記

CakePHP PHP5.3でWarning: strtotime()エラー(´・ω・)ス

手元のNetBeans7.0も環境どうにか終わり、
ちまちま・・と書き始めてサーバーにあげたらエラー。

Warning (2): strtotime()
[function.strtotime]: It is not safe to rely on
the system's timezone settings. You are *required* to use


なにやらPHP 5.3で出るようで、早速直す。
app/config/core.php

/**
* If you are on PHP 5.3 uncomment this line and correct your server timezone
* to fix the date & time related errors.
*/
date_default_timezone_set('Asia/Tokyo');
//↑              ↑   
// コメントアウト外して     UTCをAsia/Tokyoに。


そんな記録(´・ω・)ス