Php/func directory closedir
来自菜鸟教程
PHP closeir()函数
例
打开目录,读取其内容,然后关闭:
<?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
定义和用法
closeir()函数关闭目录句柄。
句法
closedir(dir)
参数值
参数 | 描述 |
---|---|
dir | 可选的。指定先前打开的目录句柄资源
。如果未指定此参数,则假定由opendir()打开的最后一个链接 |
技术细节
返回值: | - |
PHP版本: | 4.0+ |