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

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

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

php遍历目录方法小结,php历目录小结

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

1. 方法1    

<&#63;php
  function myscandir($pathname){
    foreach( glob($pathname) as $filename ){
      if(is_dir($filename)){
        myscandir($filename.'/*');
      }else{
        echo $filename.'<br/>';
      }
    }
  }
  myscandir('D:/wamp/www/exe1/*');
&#63;>

2. 方法2

<&#63;php
  function myscandir($path){
    $mydir=dir($path);
    while($file=$mydir->read()){
      $p=$path.'/'.$file;
      if(($file!=".") AND ($file!="..")){
      echo $p.'<br>';
      }
      if((is_dir($p)) AND ($file!=".") AND ($file!="..")){
        myscandir($p);
      }
    }  
  }
  myscandir(dirname(dirname(__FILE__)));
&#63;>

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

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/965565.htmlTechArticlephp遍历目录方法小结,php历目录小结 本文实例总结了php遍历目录方法。分享给大家供大家参考。具体如下: 1. 方法1 php function myscandir($pa...
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