[Zend Framework] Zend Server: timezone を設定する
Zend Server /usr/local/zend/bin/php の phpinfo を確認すると、timezone warning が出るので設定をします。
% php -i | grep include_path
include_path => .:/usr/local/zend/share/ZendFramework/library:/usr/local/zend/share/pear => .:/usr/local/zend/share/ZendFramework/library:/usr/local/zend/share/pear
PHP Warning: Unknown: 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 the timezone 'UTC' for now, but please set date.timezone to select your timezone. in Unknown on line 0
php.ini を探します。
% php -i | grep php.ini
Configuration File (php.ini) Path => /usr/local/zend/etc
Loaded Configuration File => /usr/local/zend/etc/php.ini
vimコマンドモードで「/<文字列>」で timezone を検索する。
% sudo vim /usr/local/zend/etc/php.ini
Asia/Tokyo を設定する。
[Date]
; Defines the default timezone used by the date functions
; http://php.net/date.timezone
date.timezone = Asia/Tokyo
warning が消えました。
% php -i | grep include_path
include_path => .:/usr/local/zend/share/ZendFramework/library:/usr/local/zend/share/pear => .:/usr/local/zend/share/ZendFramework/library:/usr/local/zend/share/pear
なお、ZendFramework アプリケーションへの反映には、Zend Server のリスタートが必要でした。
% sudo /usr/local/zend/bin/zendctl.sh restart