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.
読んで字の通り、php.ini に
date.timezone = 'Asia/Tokyo'
とするか、コード中に
date_default_timezone_set('Asia/Tokyo')
とすれば、このワーニングはなくなる。
Pingback: PHPフレームワークsymfonyをインストールする | Square MI blog
ありがとうございます