P粉7162282452023-09-02 16:58:17
这是我用来做类似事情的方法,增加循环内的值,并将该值传递给包含的文件。尝试一下:
First.tpl
{assign var="counter" value=0} {foreach ...} /* iterates at least 100 times */ {assign var="counter" value=$counter+1} {include file='Second.tpl' counter=$counter} {/foreach}
第二.tpl
{$counter} /* Check if counter increase */ {if $counter > 10} do-something {/if}
注意。- 我将 $counter
初始化为零。