當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。