猿问

写一个函数,能够遍历一个文件夹下的所有文件和子文件夹。

写一个函数,能够遍历一个文件夹下的所有文件和子文件夹。


慕的地10843
浏览 493回答 1
1回答

富国沪深

function my_scandir($dir){     $files = array();     if ( $handle = opendir($dir) ) {         while ( ($file = readdir($handle)) !== false ) {             if ( $file != ".." && $file != "." ) {                 if ( is_dir($dir . "/" . $file) ) {                     $files[$file] = scandir($dir . "/" . $file);                 }else {                     $files[] = $file;                 }             }         }         closedir($handle);         return $files;     }}
随时随地看视频慕课网APP
我要回答