3

我创建了一个 PHP 脚本来生成 CSV 文件。我只想保留脚本创建的最新文件。如何*.csv使用 PHP 删除目录中的所有旧文件?

4

1 回答 1

12
// Get a list of all CSV files in your folder.
$csv = glob("*.csv");

// Sort them by modification date.
usort($csv, function($a, $b) { return filemtime($a) - filemtime($b); });

// Remove the newest from your list.
array_pop($csv);

// Delete all the rest.
array_map('unlink', $csv);

如果您的 CSV 扩展名可能是任何情况,请csv使用[cC][sS][vV]. 这是一个全局模式。

于 2012-09-18T04:51:38.420 回答