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