私はフォルダをループして、その中のすべてのファイルを削除するスクリプトを探していますが、最新のもの(それぞれのファイルの名前はfilename_date('Y')_date('m')_date('d').extension)
とマークされています。フォルダ内のすべてのファイルを削除しますが、最後のファイルは削除しますか?
私はスタック上に、ここで、このスクリプトを発見した:
if ($handle = opendir('/path/to/your/folder'))
{
$files = array();
while (false !== ($file = readdir($handle)))
{
if (!is_dir($file))
{
// You'll want to check the return value here rather than just blindly adding to the array
$files[$file] = filemtime($file);
}
}
// Now sort by timestamp (just an integer) from oldest to newest
asort($files, SORT_NUMERIC);
// Loop over all but the 5 newest files and delete them
// Only need the array keys (filenames) since we don't care about timestamps now as the array will be in order
$files = array_keys($files);
for ($i = 0; $i < (count($files) - 5); $i++)
{
// You'll probably want to check the return value of this too
unlink($files[$i]);
}
}
以上これが最後の5つ以外のものを削除します。これは良い方法ですか?または、別の方法、より単純なまたはより良いものがありますか?