0
我有這段代碼將所有結果顯示爲圖標,但它顯示每個循環中將近50個圖標。我搜索了許多方法,在每個循環中將其更改爲3個圖標失敗。我怎樣才能做到這一點?如何在PHP中將foreach循環限制爲3個結果圖標?
foreach ($categoryItems as $item) {
if ($item['categoryId'] != $category['id'])
continue;
$itemXML = $items->findItemInXML($item['itemId']);
$subContent .= "<a class=\"thumbnail\" ><img src=\"images/gameIcons/".$items->getIcon($itemXML).".png\" alt=\"Item icon\" align=\"top\" />";
}
$subContent .= "</td>
<td class=\"tablePreview ui-state-hover\">
<a href=\"showMore\">More information</a>
</td>
</tr>";
爲什麼不使用'for'循環呢? –