猿问
写一个函数,能够遍历一个文件夹下的所有文件和子文件夹。
写一个函数,能够遍历一个文件夹下的所有文件和子文件夹。
慕的地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; }}
0
0
0
随时随地看视频
慕课网APP
相关分类
PHP
php如何把参数放在Http Request Heade????
1 回答
我要回答