php之readdir函数用法实例
程序员文章站
2022-10-04 21:30:57
本文实例讲述了php中readdir函数用法。分享给大家供大家参考。具体用法分析如下:
定义和用法:readdir() 函数返回由 opendir() 打开的目录句柄中的...
本文实例讲述了php中readdir函数用法。分享给大家供大家参考。具体用法分析如下:
定义和用法: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);
}
}
// 判断是否为目录
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);
}
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);
}
while (false !== ($file = readdir($handle))) {
if ($file != "." && $file != "..") {
echo "$file ";
}
}
closedir($handle);
}
注:readdir必须与opendir配合使用才行.
希望本文所述对大家的php程序设计有所帮助。
上一篇: 前端基础复习第一周第一天浏览器内核
下一篇: Yii2设计模式——静态工厂模式
推荐阅读
-
go语言的panic和recover函数用法实例
-
PHP中strcmp()和strcasecmp()函数字符串比较用法分析
-
PHP中list()函数用法实例简析
-
PHP中addcslashes与stripcslashes函数用法分析
-
PHP中substr函数字符串截取用法分析
-
PHP中strnatcmp()函数“自然排序算法”进行字符串比较用法分析(对比strcmp函数)
-
PHP使用trim函数去除字符串左右空格及特殊字符实例
-
PHP遍历目录函数opendir()、readdir()、closedir()、rewinddir()总结
-
php中字符查找函数strpos、strrchr与strpbrk用法
-
PHP设计模式之策略模式原理与用法实例分析