最新的Web开发教程
 

PHP rewinddir() Function

<PHP目录参考

打开一个目录,列出它的文件,重置目录句柄,再次列出它的文件,然后关闭:

<?php
$dir = "/images/";

// Open a directory, and read its contents
if (is_dir($dir)){
  if ($dh = opendir($dir)){
    // List files in images directory
    while (($file = readdir($dh)) !== false){
      echo "filename:" . $file . "<br>";
    }
    rewinddir();
    // List once again files in images directory
    while (($file = readdir($dh)) !== false){
      echo "filename:" . $file . "<br>";
    }
    closedir($dh);
  }
}
?>

结果:

filename: cat.gif
filename: dog.gif
filename: horse.gif
filename: cat.gif
filename: dog.gif
filename: horse.gif


定义和用法

rewinddir()函数重置通过创建的目录句柄opendir()


句法

rewinddir( dir_handle );

参数 描述
dir_handle 可选的。 指定先前打开的目录句柄资源opendir() 如果未指定此参数,最后一个环节被开启opendir()假设

技术细节

返回值: -
PHP版本: 4.0+

<PHP目录参考