1
我必須在目錄中找到live.php及其路徑假設模塊及其所有子目錄(例如用戶,博客等)搜索子目錄博客包含更多的子目錄。搜索帶有特定目錄及其子目錄路徑的特定文件
我正在使用長碼來完成這項工作。任何其他更好和更短的方法。
我必須在目錄中找到live.php及其路徑假設模塊及其所有子目錄(例如用戶,博客等)搜索子目錄博客包含更多的子目錄。搜索帶有特定目錄及其子目錄路徑的特定文件
我正在使用長碼來完成這項工作。任何其他更好和更短的方法。
我想你應該看看PHP glob
http://php.net/manual/en/function.glob.php
示例:搜索dir/module
和子目錄live.php
或任何與live.php
glob_recursive('dir/module/*live.php');
函數結束使用:http://www.php.net/manual/en/function.glob.php#106595
if (! function_exists('glob_recursive'))
{
function glob_recursive($pattern, $flags = 0)
{
$files = glob($pattern, $flags);
foreach (glob(dirname($pattern).'/*', GLOB_ONLYDIR|GLOB_NOSORT) as $dir)
{
$files = array_merge($files, glob_recursive($dir.'/'.basename($pattern), $flags));
}
return $files;
}
}
a絕對是根據需要....謝謝你爸爸 – shuja 2012-04-29 17:59:14
請發佈你的代碼的相關部分... – HappyTimeGopher 2012-04-29 06:54:09