我有這樣的腳本:PHP圖片顯示
<?php
$count = 0;
foreach(glob("images/{*.gif,*.jpg,*.png,*.jpeg,*.bmp}", GLOB_BRACE) as $image)
while ($image)
{
if($count==3)
{
print "</tr>";
$count = 0;
}
if($count==0)
print "<tr>";
print "<td>";
?>
<img src="<?php echo $image;?>" width="80" height="80"/>
<?php
$count++;
print "</td>";
}
if($count>0)
print "</tr>";
?>
它應該拍攝的圖像從一個文件夾(「圖片」在這種情況下),並在一排顯示他們3。但它顯示一個圖片1000000次。我該如何解決這個問題?我試圖解決這個問題,我只知道問題在於「while」行。
我覺得你並不需要'而($圖像)' – fedorqui 2013-02-25 15:51:23