Created
August 23, 2012 17:07
-
-
Save pwenzel/3438784 to your computer and use it in GitHub Desktop.
Recursively include all PHP files
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Scan the api path, recursively including all PHP files | |
* | |
* @param string $dir | |
* @param int $depth (optional) | |
*/ | |
protected function _require_all($dir, $depth=0) { | |
if ($depth > $this->max_scan_depth) { | |
return; | |
} | |
// require all php files | |
$scan = glob("$dir/*"); | |
foreach ($scan as $path) { | |
if (preg_match('/\.php$/', $path)) { | |
require_once $path; | |
} | |
elseif (is_dir($path)) { | |
$this->_require_all($path, $depth+1); | |
} | |
} | |
} |
Thanks, good code!
is this a save way to code?
Remember that the included PHP files would be in _require_all function context, so variables won't be accessible outside. (This doesn't mean that functions and classes won't work)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Good work
if you changed line 15 to $scan = glob("$dir" . DIRECTORY_SEPARATOR . "*");
the code will be OS independent
Thank you