溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶(hù)服務(wù)條款》

修正memcache.php中的錯(cuò)誤示例

發(fā)布時(shí)間:2020-08-11 09:09:29 來(lái)源:網(wǎng)絡(luò) 閱讀:664 作者:StanlyCheng 欄目:web開(kāi)發(fā)

使用memcache.php監(jiān)控memcache后,在頁(yè)面報(bào)時(shí)間格式的錯(cuò)誤:

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


根據(jù)提示可以列出memecache.php相關(guān)的行數(shù)內(nèi)容;

24 define('DATE_FORMAT','Y/m/d H:i:s');
736 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>';

解決辦法:

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

之上增加一行

date_default_timezone_set("PRC");


其他方法,例如在php.ini中設(shè)置date.timezone的值,無(wú)論怎么設(shè)置和重啟PHP-FPM進(jìn)程都不生效,這點(diǎn)比較奇怪;



向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI