如何獲取PHP中目錄中最後X個文件?獲取目錄中最後X個文件
我使用此代碼獲取最後一個文件,但我如何獲得最後X個文件?
我的代碼:
$path = "/path/test/";
$latest_ctime = 0;
$latest_filename = '';
$d = dir($path);
while (false !== ($entry = $d->read())) {
$filepath = "{$path}/{$entry}";
// could do also other checks than just checking whether the entry is a file
if (is_file($filepath) && filectime($filepath) > $latest_ctime) {
$latest_ctime = filectime($filepath);
$latest_filename = $entry;
}
}
你最後一個「X」文件是什麼意思? – Shank
獲取最後10個文件例如 –
我更新了您的問題,使用* n *而不是* x *:感覺更像是一個整數。也做了一些小的文法修正。 – trincot