我想將我的日志文件縮減為 7KB。但修剪只運行一次,文件大小也不會更新。這是代碼:$thresholdKB = "7";$files = glob('logs/*.{log}', GLOB_BRACE);foreach($files as $file) { $filesizeKB = filesize("$file") / 1024; if ($filesizeKB > $thresholdKB){ while ($filesizeKB > $thresholdKB) { $filesizeKB = filesize("$file") / 1024; $lines = file("$file"); unset($lines[0]); $fp = fopen("$file", 'w'); fwrite($fp, implode('', $lines)); fclose($fp); } }}
- 1 回答
- 0 關(guān)注
- 111 瀏覽
添加回答
舉報
0/150
提交
取消