PHP closedir() 函數
PHP closedir() 函數
實例
打開一個目錄,讀取它的內容,然后關閉:
<?php
$dir = "/images/";
// Open a directory, and read its contents
if (is_dir($dir)){
if ($dh = opendir($dir)){
while (($file = readdir($dh)) !== false){
echo "filename:" . $file . "<br>";
}
closedir($dh);
}
}
?>
$dir = "/images/";
// Open a directory, and read its contents
if (is_dir($dir)){
if ($dh = opendir($dir)){
while (($file = readdir($dh)) !== false){
echo "filename:" . $file . "<br>";
}
closedir($dh);
}
}
?>
結果:
filename: cat.gif
filename: dog.gif
filename: horse.gif
filename: dog.gif
filename: horse.gif
定義和用法
closedir() 函數關閉目錄句柄。
語法
closedir(dir_handle);
參數 | 描述 |
---|---|
dir_handle | 可選。指定之前由 opendir() 打開的目錄句柄資源。如果該參數未指定,則使用最后一個由 opendir() 打開的鏈接。 |
技術細節
返回值: | - |
---|---|
PHP 版本: | 4.0+ |

相關文章
- PHP 類型比較
- PHP 常量
- PHP 數組排序
- PHP 魔術常量
- PHP $_POST 變量
- PHP 文件上傳
- PHP Cookie
- PHP Secure E-mails
- PHP 高級過濾器
- PHP array_count_values() 函數
- PHP array_key_first() 函數
- PHP array_keys() 函數
- PHP array_udiff_uassoc() 函數
- PHP array_walk_recursive() 函數
- PHP count() 函數
- PHP shuffle() 函數
- PHP 5 Array 函數
- PHP 5 Date/Time 函數
- PHP Filter 函數
- PHP PDO