opendir…ディレクトリを開く。
ファイル操作
ディレクトリ
●書式
resource opendir( string $path )
●引数
strint $path : ディレクトリへのパス
●返値
成功 : ディレクトリハンドル
失敗 : FALSE
ディレクトリがオープンされない場合は、E_WARNING エラーも出力されます。
*エラー制御演算子(@)などで抑制可能。
サンプルコード
<?php
$dir = "sample/";
// ディレクトリの内容を読み込みます。
if ($dh = opendir($dir))
{
while (($file = readdir($dh)) !== false)
{
echo "filename: " . $file . "<br />n";
}
// ハンドルを閉じる
closedir($dh);
}
?>