在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
1 /* 获取文件目录下的文件和子文件*/ 2 3 function getfile($path){ 4 5 foreach(glob($path.'\*' as $file)){ 6 7 echo $file; 8 //判断$file 是否是目录 ,是目录递归再次遍历 9 if(is_dir($file)){ 10 getfile($path) 11 12 } 13 } 14 15 } 16 17 18 /*获取文件目录下指定后缀名的文件*/ 19 20 21 function getFileName($path){ 22 23 foreach(glob($path.'\*' as $file)){ 24 $i = 0; 25 if(preg_match('/.png$/',$file)){ 26 $fileArr[$is] = $file; 27 print_r($fileArr); 28 } 29 if(is_dir($file)){ 30 getFileName($path); 31 } 32 33 34 } 35 36 37 } 38
|
2022-08-16
2022-11-06
2022-08-18
2022-08-15
2022-08-18
请发表评论