<?php

function walk($pattern){
	$files = glob($pattern);
	foreach(array_reverse(glob(dirname($pattern).'/*', GLOB_ONLYDIR|GLOB_NOSORT)) as $dir){
		$files = array_merge(walk($dir.'/'.basename($pattern)), $files);
	}
	return $files;
}

print_r(walk("*.*"));