我随机(每天大约 20 次)在生产服务器(PHP 7.0.32)上收到此错误:
PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 4787537204 bytes)
到目前为止,错误的“存在”相当低,但是因为我不确定出了什么问题,所以我担心未来和更大的问题。
发生错误时,我在页面顶部运行此代码:
$curTime = time();
$dataIds = array("1", "2", "3", "4", "5", "6", "7", "8", "9", "10");
$end = array();
$update = array();
$dbUpdate = array();
foreach($dataIds as $id) {
$f = fopen( "./data/{$id}.json", "r");
if ($f === false) {
continue;
}
$data = fread($f, 1024);
fclose($f);
$data = json_decode($data, true);
if (!isset($data['input'])) {
continue;
}
$endDate = $data['input'][0]['end'];
$updateDate = $data['input'][0]['start'];
$dbUpdateDate = $data['input'][0]['update'];
$end[$id] = ($endDate !== "") ? strtotime($endDate." UTC") : $curTime;
$update[$id] = ($updateDate !== "") ? strtotime($updateDate." UTC") : $curTime;
$dbUpdate[$id] = ($dbUpdateDate !== "") ? strtotime($dbUpdateDate." UTC") : $curTime;
}
并在此行触发错误:
$end[$id] = ($endDate !== "") ? strtotime($endDate." UTC") : $curTime;
我无法重现开发服务器的问题,我不确定是什么原因造成的以及如何调试(我无法在生产服务器上启用调试功能)。在致命错误之前没有其他警告或通知。
json 数据文件很小,大约 500 字节。但是,它们是从 cron 作业更新的。所以理论上我可以打开不完整的文件。但在这种情况下,json_decode返回null我测试过的。
json示例:
{
"input": [{
"id": "1",
"start": "2019-11-15 06:00:00",
"end": "2019-11-18 12:00:00",
"update": "2019-11-15 10:52:44"
}]
}
aluckdog
慕码人2483693
米脂