| |
|
|
·çÇÁ·Î ÇÒ´çµÈ ¹è¿ÀÇ °ªÀÔ´Ï´Ù.
¾Æ·¡ÀÇ °æ¿ì {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>
{/}
|
|
|