index_ 이전    다음    목록
{ loop_id.index_ }
{ ..index_ }
0 부터 시작하는 루프번호이고, index_ 를 사용하기 위한 별도의 변수 할당이 필요없습니다.
index.php
...
$tpl->define('index', 'index.tpl');
$tpl->assign('someLoop', array(15=>'', 3=>'', 8=>''));
$tpl->print_('index');
index.tpl
{@ someLoop}
   
{someLoop.index_} : {someLoop.key_}
{/}
>>output
    0 : 15
    1 : 3
    2 : 8
위와 같이 index_key_ 와 다르고, 두 값이 같다면, index_ 를 사용하는 것이 효율적입니다.
 이전 목록 다음 
 
Since 2003-03-03 hosted on vultr.com