继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

修正memcache.php中的错误示例

linux快速入门培训
关注TA
已关注
手记 266
粉丝 31
获赞 120

使用memcache.php监控memcache后,在页面报时间格式的错误:

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. 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/usr/local/nginx/html/memcache.phpon line 736


根据提示可以列出memecache.php相关的行数内容;

124 define('DATE_FORMAT','Y/m/d H:i:s');
1736 echo '<tr class=tr-0><td class=td-0>Start Time</td><td>',date(DATE_FORMAT,$memcacheStatsSingle[$server]['STAT']['time']-$memcacheStatsSingle[$server]['STAT']['uptime']),'</td></tr>';

解决办法:

124 define('DATE_FORMAT','Y/m/d H:i:s');

之上增加一行

date_default_timezone_set("PRC");


其他方法,例如在php.ini中设置date.timezone的值,无论怎么设置和重启PHP-FPM进程都不生效,这点比较奇怪;



打开App,阅读手记
0人推荐
发表评论
随时随地看视频慕课网APP