PHP関数 opendir

TOP > PHP  > PHP関数リファレンス  > opendir

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);
}
?>






索引

A  B  C  D  E  F  G  H  I  J  K  L  M  N 
O  P  Q  R  S  T  U  V  W  X  Y  X