Smarty模板文件中的一般变量

阅读更多

一 代码

index.php
 'PHP从入门道具精通','unit_price' => array('price' => '¥65.00','unit' => '本'));
	$smarty->assign('title','使用Smarty读取数组');
	$smarty->assign('arr',$arr);
	$smarty->display('2/index.tpl');
?>
 
index.tpl



{ $title }




购书信息:
图书类别:{ $arr[0] }
图书名称:{ $arr.name }
图书单价:{ $arr.unit_price.price }/{ $arr.unit_price.unit }
 
二 运行结果
购书信息:
图书类别:computerbook
图书名称:PHP从入门道具精通
图书单价:¥65.00/本

 

你可能感兴趣的:(Smarty,模板文件)