destoon实现调用自增数字从1开始的方法

时间:2021-08-01 00:59:09

本文示例讲述了destoon实现调用自增数字从1开始的方法,在进行数据调用的时候有一定的实用价值。希望对大家的destoon开发有所帮助。具体方法如下:

示例功能:destoon 调用自增数字 从1开始。

具体代码如下:

?
1
2
3
4
5
6
7
8
9
10
11
<!--{php $tags=tag("moduleid=14&length=46&condition=status=3&pagesize=10&order=hits desc&template=null");}-->
               
{loop $tags $k $t
 <li>{php $k = ++$k;} 
   <a href="{$t[linkurl]}" rel="external nofollow" target="_blank" class="item">
     <span class="num">{$t[hits]}</span> 
     <i class="icon icon2">{$k++}</i>   
     <span class="txt f-ib f-thide">{$t[title]}</span>
   </a>             
 </li>
{/loop}