opendir 構文: opendir(path,context)
Directory、関数の説明: ディレクトリ ハンドルを開きます。opendir() 関数はディレクトリ ハンドルを開き、関数はディレクトリ ストリームを返します。それ以外の場合は false を返します。 opendir ディレクトリすべてのファイル インスタンスをリストするコードは次のとおりです:
$dirs ='./';//現在の愚か者を指定します
if( is_dir( $dirs ) )
{
$hanld = opendir ($dirs);
while (($file = readdir($hanld)) !== false)
{
echo "ファイル名: " . $file .
}
Closedir($hanld ;
ファイル名:www .phpfensi.com
*/
ヒントとメモ
注: PHP 5.0.0 以降、path パラメーターは ftp:// URL ラッパーをサポートします
注: PHP 4.3.0 では、 path パラメータはサポートされているディレクトリリストの URL であればどれでも構いませんが、PHP 4 では file:// URL ラッパーのみがこの機能をサポートしています。