标签:display div blog 页面 smarty art 数组 对象 nbsp
显示数组的方式:
访问的是.php页面
<?php require "../init.inc.php"; $arr = array("one"=>"111111111","two"=>"22222222"); $smarty->assign("shuzu",$arr); $smarty->display("test.html");
对应模板文件只有html的代码的页面:
</head> <body>
<{$shuzu["one"]}> </body> </html>
显示调用类的对象的方式:
访问的是.php页面
<?php require "../init.inc.php"; class Ren{ public $name = "张三"; } $r = new Ren(); $smarty->assign("duixiang",$r); $smarty->display("test.html");
对应只有html代码的模板文件:
</head> <body>
<{$duixiang->name }> </body> </html>
显示字符串的方式:
.php页面
<?php require "../init.inc.php"; $smarty->assign("like","单大源"); $smarty->display("test.html");
模板文件:
</head> <body>
<{$like }> </body> </html>
标签:display div blog 页面 smarty art 数组 对象 nbsp
原文地址:http://www.cnblogs.com/shandayuan/p/7352523.html