1
我想拉一個目錄中的所有文件,但它在5個文件名塊。我找不到一個不使用while (($file = readdir($dh)) !== false)
循環的示例。我以爲曾經有過類似於這個while(!feof($file))
的聲明,但是對於目錄而言,我再也找不到它了。任何幫助表示讚賞。php列表目錄5個文件在一次
這是我最好的嘗試:
$dir = "images";
opendir($dir);
while (($file = readdir($dh)) !== false)
{
for ($x=0; $x<=5; $x++)
{
$file = readdir($dh);
echo $file . '<br>';
}
}
closedir($dir);
感謝,
道格
我使用了歐根的設計變化: $ dir =「images/weddings」; $ dh = opendir($ dir)或退出('oops'); $ loopcount = 0; 而(($文件名= READDIR($ DH))!== FALSE){ 如果 (($文件名!= 「 」)和($文件名!=「」)){ $ loopcount = $ loopcount + 1; echo'
相關問題