PHP closedir() 函數(shù)

2018-11-18 17:14 更新

PHP closedir() 函數(shù)

PHP Directory PHP Directory 參考手冊

實例

打開一個目錄,讀取它的內(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);
}
}
?>

結(jié)果:

filename: cat.gif
filename: dog.gif
filename: horse.gif


定義和用法

closedir() 函數(shù)關(guān)閉目錄句柄。


語法

closedir(dir_handle);

參數(shù) 描述
dir_handle 可選。指定之前由 opendir() 打開的目錄句柄資源。如果該參數(shù)未指定,則使用最后一個由 opendir() 打開的鏈接。

技術(shù)細節(jié)

返回值: -
PHP 版本: 4.0+


PHP Directory PHP Directory 參考手冊
以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號