php script to delete files older than 24 hrs, deletes all files

后端 未结 6 1203
伪装坚强ぢ
伪装坚强ぢ 2020-12-02 18:59

I wrote this php script to delete old files older than 24 hrs, but it deleted all the files including newer ones:



        
6条回答
  •  猫巷女王i
    2020-12-02 19:30

     86400){
        unlink($file);
        }
    }
    
    ?>
    

    You can also specify file type by adding an extension after the * (wildcard) eg

    For jpg images use: glob($dir."*.jpg")

    For txt files use: glob($dir."*.txt")

    For htm files use: glob($dir."*.htm")

提交回复
热议问题