|
|
|
루프로 할당된 배열의 값입니다.
아래의 경우 {list.name} {.name} {list.value_.name} {.value_.name} 은 모두 같습니다.
index.php |
<?php
include 'Template_.class.php';
$tpl = new Template_;
$tpl->define('index', 'index.tpl');
$loop = array(
array(
'name' =>'banana',
'color'=>'yellow',
),
array(
'name' =>'apple',
'color'=>'red',
),
);
$tpl->assign('list', $loop);
$tpl->print_('index');
?>
|
index.tpl |
{@ list}
<div>{list.name} : {list.color}</div>
{/}
|
|
|