Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
$files = glob("*.*"); for ($i=1; $i<count($files); $i++){ $file = $files[$i]; echo "$file<br />"; }
ディレクトリ内のすべてのファイルを表示しようとしています。これは、このディレクトリにある .php ファイルを取得していますが、mp3 ファイルが見つかりません。理由はありますか?
これはうまくいくかもしれません:)
for ($i=0; $i<count($files); $i++){
foreach を使用しない理由
foreach (glob("*.*") as $filename) { echo "$filename size " . filesize($filename) . "\n"; }