value_ ÀÌÀü    ´ÙÀ½    ¸ñ·Ï
{ loop_id.value_ }
·çÇÁ·Î ÇÒ´çµÈ ¹è¿­ÀÇ °ªÀÔ´Ï´Ù.
¾Æ·¡ÀÇ °æ¿ì {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>

{/}
 ÀÌÀü ¸ñ·Ï ´ÙÀ½ 
 
2003-03-03 ~