在文件 conf/local.php中找到
// end auto-generated content
在下面添加以下代码来设置时区(这里的例子是东八区,即中国大陆时间):
putenv("Asia/Chungking");
如果你的php版本是php5:
date_default_timezone_set("Asia/Chungking");
注意: 将 Asia/Chungking 替换成你所要设置的时区名字(如GMT)即可
你可以在这个链接参考所有时区的名字: http://www.theprojects.org/dev/zone.txt
Except where otherwise noted, content on this wiki is licensed under the following license: CC Attribution-Noncommercial-Share Alike 3.0 Unported