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"; }