私はこのphpスクリプトを書いて、24時間以上経過した古いファイルを削除しましたが、新しいファイルを含むすべてのファイルが削除されました。
<?php
$path = 'ftmp/';
if ($handle = opendir($path)) {
while (false !== ($file = readdir($handle))) {
if ((time()-filectime($path.$file)) < 86400) {
if (preg_match('/\.pdf$/i', $file)) {
unlink($path.$file);
}
}
}
}
?>
(time()-filectime($path.$file)) < 86400
現在の時刻とファイルの変更時刻がwithin 86400秒の場合、...
if (preg_match('/\.pdf$/i', $file)) {
unlink($path.$file);
}
それはあなたの問題かもしれないと思います。 >または> =に変更すると、正しく機能するはずです。
_<?php
/** define the directory **/
$dir = "images/temp/";
/*** cycle through all files in the directory ***/
foreach (glob($dir."*") as $file) {
/*** if file is 24 hours (86400 seconds) old then delete it ***/
if(time() - filectime($file) > 86400){
unlink($file);
}
}
?>
_
*(ワイルドカード)の後に拡張子を追加して、ファイルタイプを指定することもできます。
Jpg画像の場合:glob($dir."*.jpg")
Txtファイルの場合:glob($dir."*.txt")
Htmファイルの場合:glob($dir."*.htm")
>
_が必要です。filemtime()
が必要です。<?php
$dir = getcwd()."/temp/";//dir absolute path
$interval = strtotime('-24 hours');//files older than 24hours
foreach (glob($dir."*") as $file)
//delete if older
if (filemtime($file) <= $interval ) unlink($file);?>
うまくいきます
$path = dirname(__FILE__);
if ($handle = opendir($path)) {
while (false !== ($file = readdir($handle))) {
$timer = 300;
$filetime = filectime($file)+$timer;
$time = time();
$count = $time-$filetime;
if($count >= 0) {
if (preg_match('/\.png$/i', $file)) {
unlink($path.'/'.$file);
}
}
}
}
$path = '/cache/';
// 86400 = 1day
if ($handle = opendir($path)) {
while (false !== ($file = readdir($handle))) {
if ( (integer)(time()-filemtime($path.$file)) > 86400 && $file !== '.' && $file !== '..') {
unlink($path.$file);
echo "\r\n the file deleted successfully: " . $path.$file;
}
}
}