我正在使用foreach來循環顯示圖像。最多有四張圖片和最少一張圖片。 例如,如果有兩個圖像(=兩個循環),我想告訴foreach他需要再次循環兩次並回顯一些佔位符圖片。PHP foreach循環x次並添加佔位符
繼承人我的foreach:
<?php foreach($users as $k => $v) {?>
<img src="/images/user_<?php echo $k; ?>.jpg" alt="" title="" />
<?php } ?>
輸出(兩個迴路):
<img src="/images/user_0.jpg" alt="" title="" />
<img src="/images/user_1.jpg" alt="" title="" />
但新的腳本應該輸出:
<img src="/images/user_0.jpg" alt="" title="" />
<img src="/images/user_1.jpg" alt="" title="" />
<img src="/images/user_placeholder.jpg" alt="" title="" />
<img src="/images/user_placeholder.jpg" alt="" title="" />
不要忘記它可能是$用戶可以有x個條目(0-4)
因此,您希望將x個用戶圖像輸出到瀏覽器,並且x個佔位符(到目前爲止都是完全相同的)緊隨其後? – Malovich 2012-04-26 14:58:54