网站地图    收藏   

主页 > 后端 > php资料库 >

PHP5.3 中的Warning: date_default_timezone_set_自学php网

来源:自学PHP网    时间:2014-12-04 22:12 作者: 阅读:

[导读] 从PHP5.2升级到PHP5.3后出现警告 It is not safe to rely on the systems timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function 除了在PHP页面中添加 if(function_exists('...

从PHP5.2升级到PHP5.3后出现警告
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页面中添加

if(function_exists('date_default_timezone_set'))
   date_default_timezone_set('Asia/Tokyo');

之外, 还可以通过编辑 php.ini, 增加
date.timezone = “America/Anchorage”
这行来实现. 可用的timezone列表在
http://nl3.php.net/manual/en/timezones.php

自学PHP网专注网站建设学习,PHP程序学习,平面设计学习,以及操作系统学习

京ICP备14009008号-1@版权所有www.zixuephp.com

网站声明:本站所有视频,教程都由网友上传,站长收集和分享给大家学习使用,如由牵扯版权问题请联系站长邮箱904561283@qq.com

添加评论