Heim >Backend-Entwicklung >PHP-Tutorial >php遍历目录方法小结_PHP教程

php遍历目录方法小结_PHP教程

WBOY
WBOYOriginal
2016-07-13 10:04:18952Durchsuche

php遍历目录方法小结

 这篇文章主要介绍了php遍历目录方法,实例总结了常用的两种实现技巧,具有一定参考借鉴价值,需要的朋友可以参考下

 

 

本文实例总结了php遍历目录方法。分享给大家供大家参考。具体如下:

1. 方法1

?

1

2

3

4

5

6

7

8

9

10

11

12

function myscandir($pathname){

foreach( glob($pathname) as $filename ){

if(is_dir($filename)){

myscandir($filename.'/*');

}else{

echo $filename.'
';

}

}

}

myscandir('D:/wamp/www/exe1/*');

?>

2. 方法2

?

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

function myscandir($path){

$mydir=dir($path);

while($file=$mydir->read()){

$p=$path.'/'.$file;

if(($file!=".") AND ($file!="..")){

echo $p.'
';

}

if((is_dir($p)) AND ($file!=".") AND ($file!="..")){

myscandir($p);

}

}

}

myscandir(dirname(dirname(__FILE__)));

?>

希望本文所述对大家的php程序设计有所帮助。

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/966366.htmlTechArticlephp遍历目录方法小结 这篇文章主要介绍了php遍历目录方法,实例总结了常用的两种实现技巧,具有一定参考借鉴价值,需要的朋友可以参考下...
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn