PHP readdir() 函数
PHP readdir() 函数
实例
打开一个目录,读取它的内容,然后关闭:
<?php
$dir = "/images/";
// Open a directory, and read its contents
if (is_dir($dir)){
if ($dh = opendir($dir)){
while (($file = readdir($dh)) !== false){
echo "filename:" . $file . "<br>";
}
closedir($dh);
}
}
?>
$dir = "/images/";
// Open a directory, and read its contents
if (is_dir($dir)){
if ($dh = opendir($dir)){
while (($file = readdir($dh)) !== false){
echo "filename:" . $file . "<br>";
}
closedir($dh);
}
}
?>
结果:
filename: cat.gif
filename: dog.gif
filename: horse.gif
filename: dog.gif
filename: horse.gif
定义和用法
readdir() 函数返回目录中下一个文件的文件名。
语法
readdir(dir_handle);
参数 | 描述 |
---|---|
dir_handle | 可选。指定之前由 opendir() 打开的目录句柄资源。如果该参数未指定,则使用最后一个由 opendir() 打开的链接。 |
技术细节
返回值: | 成功则返回文件名,失败则返回 FALSE。 |
---|---|
PHP 版本: | 4.0+ |
PHP Directory 参考手册
相关文章
- PHP 数据类型
- PHP 运算符
- PHP 包含文件 include 和 require 语句
- PHP array_filter() 函数
- PHP array_intersect_uassoc() 函数
- PHP array_merge() 函数
- PHP array_multisort() 函数
- PHP array_rand() 函数
- PHP array_reduce() 函数
- PHP array_uintersect_assoc() 函数
- PHP array_values() 函数
- PHP current() 函数
- PHP extract() 函数
- PHP prev() 函数
- PHP rsort() 函数
- PHP uasort() 函数
- PHP 5 Array 函数
- PHP cURL 函数
- PHP FTP 函数
- PHP HTTP 函数