ho lo stesso bisogno, e ha cercato di utilizzare questa funzione glob, ma sembra non essere portatile:
Vedi note da http://php.net/manual/en/function.glob.php:
Nota: questa funzione non è disponibile su alcuni sistemi (ad es. Vecchio sistema operativo Sun).
Nota: il flag GLOB_BRACE non è disponibile su alcuni sistemi non GNU, come Solaris.
E 'anche più lento rispetto opendir, date un'occhiata a: Which is faster: glob() or opendir()
così ho fatto una funzione frammento che fa la stessa cosa:
function resolve($name) {
// reads informations over the path
$info = pathinfo($name);
if (!empty($info['extension'])) {
// if the file already contains an extension returns it
return $name;
}
$filename = $info['filename'];
$len = strlen($filename);
// open the folder
$dh = opendir($info['dirname']);
if (!$dh) {
return false;
}
// scan each file in the folder
while (($file = readdir($dh)) !== false) {
if (strncmp($file, $filename, $len) === 0) {
if (strlen($name) > $len) {
// if name contains a directory part
$name = substr($name, 0, strlen($name) - $len) . $file;
} else {
// if the name is at the path root
$name = $file;
}
closedir($dh);
return $name;
}
}
// file not found
closedir($dh);
return false;
}
Usage:
$file = resolve('/var/www/my-website/index');
echo $file; // will output /var/www/my-website/index.html (for example)
Spero che questo possa aiutare qualcuno, Ioan
fonte
2015-04-06 08:51:44
'glob' può anche essere usato con un'espansione di parentesi di tipo bash:' glob ("./ uploads/filename. {Jpg, jpeg, png, gif}", GLOB_BRACE) '. – Gumbo
@pekka: Grazie mille. –