Ciao.
Prova questo
$dirimmagine = "";
$dircartella = "./";
$array = array();
if ($handle = opendir($dircartella))
{
/* This is the correct way to loop over the directory. */
while (false !== ($file = readdir($handle)))
{
if ($file != "." && $file != "..")
{
$pos = strpos($file,"thumbs_");
if ($pos !== false)
{
$dirimmagine=$dircartella.$file;
$array[] = $dirimmagine;
}
}
}




closedir($handle);
}
echo $array[0];