码迷,mamicode.com
首页 > Windows程序 > 详细

PHP rewinddir() 函数

时间:2019-10-11 12:16:12      阅读:88      评论:0      收藏:0      [点我收藏+]

标签:dir   tab   name   not   image   als   tran   code   width   

打开一个目录,列出其中的文件,充值目录句柄,重新列出其中的文件,然后关闭:

<?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 rewinddir() 函数

标签:dir   tab   name   not   image   als   tran   code   width   

原文地址:https://www.cnblogs.com/furuihua/p/11653336.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!