01
2. [代码]php 遍历目录方法2
01 read()){
08 $p=$path.'/'.$file;
09
10 if(($file!=.) and ($file!=..)){
11 echo $p.'
';
12 }
13
14 if((is_dir($p)) and ($file!=.) and ($file!=..)){
15 myscandir($p);
16 }
17 }
18 }
19
20 myscandir(dirname(dirname(__file__)));
21
22 ?>
http://www.bkjia.com/phpjc/477435.htmlwww.bkjia.comtruehttp://www.bkjia.com/phpjc/477435.htmltecharticle1. [代码]php 遍历目录方法1 01 ?php 02 03 function myscandir($pathname){ 04 05 foreach( glob($pathname) as $filename ){ 06 07 if(is_dir($filename)){ 08 myscandir($filename./...
