最模板 - 外贸网站建设,外贸网站模板

最模板

当前位置: 首页 > 建站教程 > php教程 >

php readdir函数用法与readdir实例

时间:2014-09-20 11:54来源:未知 作者:最模板zuimoban 点击:
定义和用法: readdir() 函数返回由 opendir() 打开的目录句柄中的条目,若成功,则该函数返回一个文件名,否则返回 false. 实例一,代码如下: $dir = readdir/ ; //判断是否为目录 if ( is_dir ( $dir )){

定义和用法: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. }//开源代码vcphp.com 

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

 
(责任编辑:最模板)
------分隔线----------------------------
栏目列表
推荐内容