php readdir函数用法与readdir实例
发布:smiling 来源: PHP粉丝网 添加日期:2014-09-20 10:44:38 浏览: 评论:0
定义和用法:readdir() 函数返回由 opendir() 打开的目录句柄中的条目,若成功,则该函数返回一个文件名,否则返回 false.
实例一,代码如下:
- $dir = "readdir/";
- // 判断是否为目录
- if (is_dir($dir)) {
- if ($dh = opendir($dir)) {
- while (($file = readdir($dh)) !== false) {
- echo "filename: $file : filetype: " . filetype($dir . $file) . " ";
- }
- closedir($dh);
- }
- }
实例二,注意在 4.0.0-RC2 之前不存在 !== 运算符,代码如下:
- if ($handle = opendir('/path/to/files')) {
- echo "Directory handle: $handle ";
- echo "Files: ";
- /* 这是正确地遍历目录方法 */
- while (false !== ($file = readdir($handle))) {
- echo "$file ";
- }
- /* 这是错误地遍历目录的方法 */
- while ($file = readdir($handle)) {
- echo "$file ";
- }
- closedir($handle);
- }
实例三,readdir() 将会返回 . 和 .. 条目,如果不想要它们,只要过滤掉即可,例子 2. 列出当前目录的所有文件并去掉 . 和 ..,代码如下:
- if ($handle = opendir('.')) {
- while (false !== ($file = readdir($handle))) {
- if ($file != "." && $file != "..") {
- echo "$file ";
- }
- }
- closedir($handle);
- }//开源代码phpfensi.com
注:readdir必须与opendir配合使用才行.
Tags: readdir readdir实例
相关文章
- ·PHP自定义遍历目录下所有文件dir(),readdir()函数(2015-04-11)
- ·php readdir函数怎么用(2020-01-03)
- ·php之readdir函数用法实例(2021-04-26)
- ·PHP遍历目录函数opendir()、readdir()、closedir()、rewinddir()总结(2021-04-26)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)