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);
}
}
?>
結果:
filename: cat.gif
filename: dog.gif
filename: horse.gif
定義と使用法
closedir()関数は、ディレクトリ ハンドルを閉じます。
構文
<div>closedir(<em>dir</em>)</div>
パラメータ値
パラメータ |
説明 |
---|---|
dir | Optional opendir()で以前に開いたディレクトリハンドルリソースを指定します。このパラメーターが指定されていない場合、opendir()によって開かれた最後のリンクが想定されます。 |
Technical Details
Return Value: | - |
---|---|
PHP バージョン: |
4.0+ |
プログラミング学習を加速させる
プログラミングをプロの講師に教えてもらいませんか。