Tìm tệp được đặt tên theo số cao nhất - Thủ thuật CSS

Anonim
$latest = getNewest("/path/to/folder/*_bla.xml"); function getNewest($xmlfile)( foreach (glob($xmlfile) as $filename) ( $c = explode('_', basename($filename)); $files($c(0)) = $filename; ) ksort($files, SORT_NUMERIC); $latest = array_pop($files); if (file_exists($latest))( return $latest; ) return false; )

Trong một thư mục là các tệp có tên:
1_bla.xml
2_bla.xml

34_bla.xml

Hàm trả về tệp có số lớn nhất:
$ new = “/path/to/folder/34_bla.xml”;