gpt4 book ai didi

php - 如何将 foreach 循环限制为三个循环

转载 作者:IT王子 更新时间:2023-10-29 00:06:27 26 4
gpt4 key购买 nike

如何限制这个循环..只有你的循环..谢谢你的帮助

<?php
foreach($section['Article'] as $article) :
?>
<tr>
<td>
<?php
if ($article['status'] == 1) {
echo $article['title'];
}
?>
</td>
<td>
<?php
if($article['status']== 1) {
echo '&nbsp;'.$html->link('View', '/articles/view/'.$article['id']);
}
?>
</td>
</tr>
<?php
endforeach;
?>

最佳答案

切片数组。

foreach(array_slice($section['Article'], 0, 3) as $article ):

关于php - 如何将 foreach 循环限制为三个循环,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8765879/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com