当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP closedir()用法及代码示例


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() function with example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。