Jump to content

recursive glob ?


Peuplarchie

Recommended Posts

From the glob site at php.net a user contribution:

 

Contributed by php at hm2k.org

<?php
// $Id: rglob.php,v 1.0 2008/11/24 17:20:00 hm2k Exp $

/**
* Recursive glob()
*/

/**
* @param int $pattern
*  the pattern passed to glob()
* @param int $flags
*  the flags passed to glob()
* @param string $path
*  the path to scan
* @return mixed
*  an array of files in the given path matching the pattern.
*/

function rglob($pattern='*', $flags = 0, $path='')
{
    $paths=glob($path.'*', GLOB_MARK|GLOB_ONLYDIR|GLOB_NOSORT);
    $files=glob($path.$pattern, $flags);
    foreach ($paths as $path) { $files=array_merge($files,rglob($pattern, $flags, $path)); }
    return $files;
}

/* example usage: */
chdir('../');
var_export(rglob('*.php'));

?>

Link to comment
https://forums.phpfreaks.com/topic/190425-recursive-glob/#findComment-1004492
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.