Benoît Raux yet another php coder

Chef de projet developpeur web lyonnais #geek #apero #ski #sun #php #linux #shell #dev #web

[php] rglob

Jan 15th, 2010 @ 6:02 pm

   
	if (!function_exists('rglob')){
		function rglob($sDir,$sPattern, $nFlags = NULL) {
			$sDir = escapeshellcmd($sDir);
			$aFiles = glob("$sDir/$sPattern", $nFlags);
			foreach (glob("$sDir/*", GLOB_ONLYDIR) as $sSubDir) {
				$aSubFiles = rglob($sSubDir, $sPattern, $nFlags);
				$aFiles = array_merge($aFiles, $aSubFiles);
			}
			return $aFiles;
		}
	}

Tweet

blog comments powered by Disqus
Comments

Archive · Mobile · RSS · twitter · cv