当前位置:首页 > PHP教程 > php函数 > 列表

php readdir函数用法与readdir实例

发布:smiling 来源: PHP粉丝网  添加日期:2014-09-20 10:44:38 浏览: 评论:0 

定义和用法:readdir() 函数返回由 opendir() 打开的目录句柄中的条目,若成功,则该函数返回一个文件名,否则返回 false.

实例一,代码如下:

  1. $dir = "readdir/"
  2.  
  3. // 判断是否为目录 
  4. if (is_dir($dir)) { 
  5.     if ($dh = opendir($dir)) { 
  6.         while (($file = readdir($dh)) !== false) { 
  7.             echo "filename: $file : filetype: " . filetype($dir . $file) . " "
  8.         } 
  9.         closedir($dh); 
  10.     } 

实例二,注意在 4.0.0-RC2 之前不存在 !== 运算符,代码如下:

  1. if ($handle = opendir('/path/to/files')) { 
  2.     echo "Directory handle: $handle "
  3.     echo "Files: "
  4.  
  5.     /* 这是正确地遍历目录方法 */ 
  6.     while (false !== ($file = readdir($handle))) { 
  7.         echo "$file "
  8.     } 
  9.  
  10.     /* 这是错误地遍历目录的方法 */ 
  11.     while ($file = readdir($handle)) { 
  12.         echo "$file "
  13.     } 
  14.  
  15.     closedir($handle); 

实例三,readdir() 将会返回 . 和 .. 条目,如果不想要它们,只要过滤掉即可,例子 2. 列出当前目录的所有文件并去掉 . 和 ..,代码如下:

  1. if ($handle = opendir('.')) { 
  2.     while (false !== ($file = readdir($handle))) { 
  3.         if ($file != "." && $file != "..") { 
  4.             echo "$file "
  5.         } 
  6.     } 
  7.     closedir($handle); 
  8. }//开源代码phpfensi.com 

:readdir必须与opendir配合使用才行.

Tags: readdir readdir实例

分享到: