1
如果時間戳超過20分鐘,我試圖刪除$ lockfile。如果時間戳超過20分鐘,則刪除文件php
if (file_exists($lockfile) && time() - filemtime($lockfile) > strtotime("+20 minutes")) {
// If lockfile is alive for more than 20 minutes, unlink it
unlink($lockfile);
}
我想不通它爲什麼不起作用。可能現在我忽略了一些簡單的東西。先謝謝你!