$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; )
En una carpeta hay archivos llamados:
1_bla.xml
2_bla.xml
…
34_bla.xml
La función devuelve el archivo con el número numérico más grande:
$ latest = “/path/to/folder/34_bla.xml”;