PHP opendir() 関数
例
<?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
定義と使用法
opendir() 関数はディレクトリ ハンドルを開きます。
#構文
opendir(path,context);
説明 | |
---|---|
必須。開くディレクトリのパスを指定します。 | |
オプション。ディレクトリハンドルの環境を指定します。 context は、ディレクトリ ストリームの動作を変更するオプションのセットです。 |
##戻り値:
PHP バージョン: | 4.0 |
---|---|
PHP 変更ログ: | PHP 5.0: パス パラメーターのサポート |
以上がPHPでopendirを使用する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。