phpcms写自增的方法

在phpcms中写自增可以使用{php}标签来实现,具体的做法是在{loop}标签里让变量自增即可。

phpcms写自增的方法

phpcms怎么写自增

从1开始自增

{pc:content action="position" posid="1" num="5" thumb="1"}
    {loop $data $v}
        <a id="flash{$n}" href="{$v[url]}" target="_blank"><img src="{thumb($v[thumb],110,0)}"/></a>
    {/loop}
{/pc}

从指定数字开始自增(示例为从2开始)

{pc:content action="position" posid="1" num="5" thumb="1"}
    {php $i=2;}
    {loop $data $v}
        <a id="flash{$i}" href="{$v[url]}" target="_blank"><img src="{thumb($v[thumb],110,0)}"/></a>
        {php $i++}
    {/loop}
{/pc}

原创文章,作者:ZWRUV,如若转载,请注明出处:http://www.wangzhanshi.com/n/17222.html

(0)
ZWRUV的头像ZWRUV
上一篇 2025年1月2日 12:43:58
下一篇 2025年1月2日 12:44:00

相关推荐

发表回复

登录后才能评论