closedir
(PHP 4, PHP 5, PHP 7, PHP 8)
closedir — ディレクトリハンドルをクローズする
説明
dir_handle
で指定したディレクトリのストリームをクローズします。このストリームは、
opendir()により事前にオープンされていなければ
なりません。
パラメータ
戻り値
値を返しません。
例
例1 closedir() の例
<?php
$dir = "/etc/php5/";
// 既知のディレクトリをオープンし、変数にディレクトリを読み込んで閉じる
if (is_dir($dir)) {
if ($dh = opendir($dir)) {
$directory = readdir($dh);
closedir($dh);
}
}
?>
+add a note
User Contributed Notes
There are no user contributed notes for this page.
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google