-
-
Save geofmureithi-zz/eb737134fa2ecc831c9da30b05bbc320 to your computer and use it in GitHub Desktop.
Recursively include all PHP files
This file contains hidden or 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); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment