smarty一维数组的引用
2008-07-30 11:49
index.php:
$smarty = new Smarty; $Contacts = array(‘a’=>'123','b'=>'456') $smarty->assign('Contacts',$Contacts); $smarty->display('index.tpl'); index.tpl: {$Contacts.a}<br> {$Contacts.b}<br> |