PHP closedir() 函数
PHP closedir() 函数
实例
打开一个目录,读取它的内容,然后关闭:
<?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
定义和用法
closedir() 函数关闭目录句柄。
语法
closedir(dir_handle);
参数 | 描述 |
---|---|
dir_handle | 可选。指定之前由 opendir() 打开的目录句柄资源。如果该参数未指定,则使用最后一个由 opendir() 打开的链接。 |
技术细节
返回值: | - |
---|---|
PHP 版本: | 4.0+ |
PHP Directory 参考手册
相关文章
- PHP 类型比较
- PHP 常量
- PHP 数组排序
- PHP 魔术常量
- PHP $_POST 变量
- PHP 文件上传
- PHP Cookie
- PHP Secure E-mails
- PHP 高级过滤器
- PHP array_count_values() 函数
- PHP array_key_first() 函数
- PHP array_keys() 函数
- PHP array_udiff_uassoc() 函数
- PHP array_walk_recursive() 函数
- PHP count() 函数
- PHP shuffle() 函数
- PHP 5 Array 函数
- PHP 5 Date/Time 函数
- PHP Filter 函数
- PHP PDO