我有一个php while循环,但是我想在循环中的第三个项之后插入一个“静态”代码块,然后在静态内容之后继续循环。有人可以帮助我更新我的代码以完成下面的“期望结果”吗?
我的代码
toCountUp
期望的结果
x
答案 0 :(得分:2)
只需在if
循环内添加while
条件,检查索引:
$x = 0;
while($x <= 5) {
// Will only trigger halfway through the loop
if ($x == 3) {
echo '**STATIC CONTENT**';
}
$contentItems = $relatedArray[$rand_keys[$x]];
$contentItems = explode('|', $contentItems);
echo '<p><a href="'.$contentItems[3].'"><img class="faux" src="'.$contentItems[4].'"></a></p>';
$x++;
}
请注意,此位置仍会输出原始项目。如果您想改为替换,则需要在$contentItems
条件内包装与else
相关的所有内容:)