php scandir遍历显示所有文件与文件夹下的文件

scandir遍历显示所有文件与文件夹下的文件,方法很简单我们只要利用is_dir判断再递归查找一次,这样就可以把遍历目录下所有文件了,目录遍历代码如下:

  1. <?php
  2. function numfilesindir ($thedir){
  3. if (is_dir ($thedir)){
  4. $scanarray = scandir ($thedir);
  5. for ($i = 0; $i < count ($scanarray); $i++){
  6. if ($scanarray[$i] != "." && $scanarray[$i] != ".."){
  7. if (is_file ($thedir . "/" . $scanarray[$i])){
  8. echo $scanarray[$i] . "<br />";
  9. }
  10. }
  11. }
  12. } else {
  13. echo "Sorry, this directory does not exist.";
  14. }
  15. }
  16. echo numfilesindir ("sample1");
  17. ?>

扫描指定位置的文件,代码如下:

  1. <?php
  2. print_r(scandir("/usr/local/apache2/htdocs"));
  3. ?>
  4. <?
  5. $files = scandir(".", 1);
  6. var_dump($files);
  7. ?>