php 递归文件夹读像与查找性能
我遇到了几篇关于性能和readdir的文章,这里是php脚本:
function getDirectory( $path = '.', $level = 0 ) {
$ignore = array( 'cgi-bin', '.', '..' );
$dh = @opendir( $path );
while( false !== ( $file = readdir( $dh ) ) ){
if( !in_array( $file, $ignore ) ){
$spaces = str_repeat( ' ', ( $level * 4 ) );
if( is_dir( "$path/$file" ) ){
echo "$spaces $file\n";
getDirectory( "$path/$file", ($level+1) );
} else {
echo "$spaces $file\n";
}
}
}
closedir( $dh );
}
getDirectory( "." );
这回显文件/文件夹正确。
现在我发现这个:
$t = system('find');
print_r($t);
这也找到所有的文件夹和文件,然后我可以创建一个数组,就像第一个代码一样。
我认为比快,但我想知道这是否是一个好习惯?谢谢system('find');
readdir