PHP closedir() 函数
Closedir 的全称是 "Close Directory",函数 closedir() 用于关闭打开的目录。
用法:
closedir(dir_handle);
参数:
dir_handle
- 如果我们不指定目录句柄资源,它是一个可选参数,用于指定目录句柄资源 - 它假定最后一个链接是用 opendir() 函数打开的。
返回值:
它什么都不返回。
示例:用于打开目录、读取其文件并关闭它的 PHP 代码
<?php
$path = "/home";
//checking whether $path is a directory or not
//then, opening the directory and reading its files
if (is_dir($path)){
if ($dh = closedir($path)){
while (($file = readdir($dh)) !== false){
echo "File:" . $file . "<br/>";
}
//closing the directory
closedir($dh);
}
}
?>
输出
File:.. File:main.php File:.
参考:PHP closedir() 函数
相关用法
- PHP closedir( )用法及代码示例
- PHP class_alias()用法及代码示例
- PHP class_exists()用法及代码示例
- PHP crypt(), password_hash()用法及代码示例
- PHP chop()用法及代码示例
- PHP ctype_punct()用法及代码示例
- PHP ctype_print()用法及代码示例
- PHP cos( )用法及代码示例
- PHP ctype_lower()用法及代码示例
- PHP compact()用法及代码示例
- PHP chroot()用法及代码示例
- PHP count_chars()用法及代码示例
- PHP current()用法及代码示例
- PHP ctype_space()用法及代码示例
- PHP chdir()用法及代码示例
- PHP chroot( )用法及代码示例
- PHP ctype_xdigit()用法及代码示例
- PHP cal_days_in_month()用法及代码示例
- PHP ctype_cntrl()用法及代码示例
- PHP chgrp( )用法及代码示例
注:本文由纯净天空筛选整理自 PHP closedir() function with example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。