PHP closedir() 函数
示例
打开一个目录,读取其内容,然后关闭
<?php
$dir = "/images/";
// 打开一个目录并读取其内容
if (is_dir($dir)){
if ($dh = opendir($dir)){
while (($file = readdir($dh)) !== false){
echo "文件名:" . $file . "<br>";
}
closedir($dh);
}
}
?>
结果
文件名: cat.gif
文件名: dog.gif
文件名: horse.gif
定义和用法
closedir() 函数用于关闭目录句柄。
语法
closedir(dir)
参数值
参数 | 描述 |
---|---|
dir | 可选。指定先前使用 opendir() 打开的目录句柄资源。如果未指定此参数,则假定为 opendir() 打开的最后一个链接。 |
技术细节
返回值 | - |
---|---|
PHP 版本 | 4.0+ |
❮ PHP 目录参考