PHP closedir() 函数

Posted 佰草伐

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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);
}
}
?>

结果:

filename: cat.gif
filename: dog.gif
filename: horse.gif

 


定义和用法

closedir() 函数关闭目录句柄。


语法

closedir(dir_handle);

 

参数描述
dir_handle 可选。指定之前由 opendir() 打开的目录句柄资源。如果该参数未指定,则使用最后一个由 opendir() 打开的链接。

技术细节

 

返回值: -
PHP 版本: 4.0+

「大理石平台验定规程」如何选择大理石平台?怎么判断大理石平台质量问题?

以上是关于PHP closedir() 函数的主要内容,如果未能解决你的问题,请参考以下文章

php 删除指定文件夹

php 批量进行复制文件

PHP课程总结20161220

readdir() opendir() 函数

Linux C中文函数手册之 目录操作函数

PHP5教程之文件操作