PHP closedir() 函數(shù)
PHP closedir() 函數(shù)
實(shí)例
打開(kāi)一個(gè)目錄,讀取它的內(nèi)容,然后關(guān)閉:
<?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);
}
}
?>
結(jié)果:
filename: cat.gif
filename: dog.gif
filename: horse.gif
filename: dog.gif
filename: horse.gif
定義和用法
closedir() 函數(shù)關(guān)閉目錄句柄。
語(yǔ)法
closedir(dir_handle);
參數(shù) | 描述 |
---|---|
dir_handle | 可選。指定之前由 opendir() 打開(kāi)的目錄句柄資源。如果該參數(shù)未指定,則使用最后一個(gè)由 opendir() 打開(kāi)的鏈接。 |
技術(shù)細(xì)節(jié)
返回值: | - |
---|---|
PHP 版本: | 4.0+ |

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