$o_smarty = new MySmarty();
$o_smarty->caching = false;
$o_smarty->cache_lifetime = 3600*168;
if (!$o_smarty->is_cached('top.tpl')) {
$menu=array (
0=>array (
0=>"aaaa",
1=>"adsa",
),
1=>array (
0=>"bbbb",
1=>"dasas",
2=>"sadas",
),
2=>array (
0=>"cccc",
1=>"asdasddsa",
)
);
$o_smarty->assign('menu',$menu);
}//if (!$o_smarty->is_cached('top.tpl'))
$o_smarty->display("testmenu.tpl");
?>
{foreach item=bmenu from=$menu name=bmenu}
{foreach item=smenu from=$bmenu name=smenu}
{if $smarty.foreach.smenu.index==0}
{$smenu}
{/foreach}
No comments:
Post a Comment