[PHP-users 18438]Re: ディレクトリー内のファイル名を取得した

Hiroki Asakawa ml @ asakawa.net
2003年 10月 14日 (火) 23:09:17 JST


淺川です。


> $dh = opendir("/home/test/sample/");
> while ($entry = readdir($dh)) {
>   if(is_file($entry)) {
>     print "{$entry}<br>\n";
>   }
> }
> closedir($dh);

if( is_file("/home/test/sample/" . $entry ) )
カレントディレクトリが /home/test/sample でないなら
上記のようにする必要があります。





PHP-users メーリングリストの案内