我目前正在尝试清除日志文件,以便在我们的网络域上托管个人PHP错误页面。缓存几乎填满了100%,我正在搜索要删除的.log文件以清除缓存。我正在经历公共汽车的撞击"尝试根据代码中提供的路径找到此文件的位置时的综合症。这就是我作为查找文件的指南:
$logFile = "C:\Windows\\Temp\\php55_errors.log";
$parsedLogs = [];
//$contents=file_get_contents("http://redactedforprivacy/error/php55_errors.txt",true);
if(file_exists($logFile)) {
$contents = file_get_contents($logFile,true);
$lines = explode("\n", $contents);
$warning = 0;
$notice = 0;
$fatal = 0;
$syntax = 0;
$exception = 0;
for ($currentLineNumber = 0; $currentLineNumber < count($lines); $currentLineNumber++) {
$currentLine = trim($lines[$currentLineNumber]);
我已经深入了解Temp文件夹但无法找到此文件。我也安装了Search Everything,它唯一出现的是一个以.txt结尾的同名文件。删除该文件并未清除缓存。任何帮助,将不胜感激。谢谢。