gpt4 book ai didi

foreach - Smarty foreach 如何从数组 1 而不是 0 开始

转载 作者:行者123 更新时间:2023-12-04 23:02:50 27 4
gpt4 key购买 nike

我有 2 个 foreach 循环,第一个带有图像。这只是第一项。但是在我的第二个 foreach 中,我想开始在数组 1 处显示结果。如果不是 0,那么我有 2 次第二个帖子。

先foreach

{foreach $cm->find('title,url,auteur,datum,reacties,topics,afbeelding,tekst', 'Blog') as $item} 
{if $item@first}
{/if}
{/foreach}

每个秒

{foreach $cm->find('title,url,auteur,datum,reacties,topics,tekst', 'Blog') as $item}
{/foeach}

我需要在第二个 foreach 中添加什么才能开始显示由数组 1 开始的结果。

抱歉,如果这是一个菜鸟问题,我真的不擅长聪明。

最佳答案

您可以使用 {continue} 跳过第二个 foreach 中的第一项:

{foreach $cm->find('title,url,auteur,datum,reacties,topics,afbeelding,tekst', 'Blog') as $item} 
{if $item@first}
{continue}
{/if}
... code for the other items here ...
{/foreach}

关于foreach - Smarty foreach 如何从数组 1 而不是 0 开始,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27034203/

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