closedir 关闭目录句柄

发表日期:2021-07-01 08:55:31 | 来源: | | 浏览(895) 分类:目录函数

closedir

(PHP 4, PHP 5, PHP 7, PHP 8)

closedir关闭目录句柄

说明

closedir(resource $dir_handle = ?): void

关闭由 dir_handle 指定的目录流。流必须之前被   opendir() 所打开。

参数


  • dir_handle

  • 目录句柄的 resource,之前由       opendir() 所打开的。如果目录句柄没有指定,那么会假定为是opendir()所打开的最后一个句柄。


范例


示例 #1 closedir() 例子

<?php 
$dir = "/etc/php5/";
// Open a known directory, read directory into variable and then close
if (is_dir($dir)) {
    if ($dh = opendir($dir)) {
        $directory = readdir($dh);
        closedir($dh);
    }
}
?>


集速网 copyRight © 2015-2022 宁ICP备15000399号-1 宁公网安备 64010402001209号
与其临渊羡鱼,不如退而结网
欢迎转载、分享、引用、推荐、收藏。