打开一个目录,列出其中的文件,充值目录句柄,重新列出其中的文件,然后关闭:
<?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() 创建的目录句柄。
参数 | 描述 |
---|---|
dir_handle | 可选。指定之前由 opendir() 打开的目录句柄资源。如果该参数未指定,则使用最后一个由 opendir() 打开的链接。 |
返回值: | - |
---|---|
PHP 版本: | 4.0+ |
在线实例
字符集 & 工具
最新更新
站点信息
关注我们