メモ
protected 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, $this->_rglob($pattern, $flags, $path));
}
return $files;
}
トラバURL : http://suin.asia/trackback/497
氷川 XOOPS Module 開発室