如何正确的使用Smarty变量?相信很多没有经验的人对此束手无策,为此本文总结了问题出现的原因和解决方法,通过这篇文章希望你能解决这个问题。
1. 从PHP分配的变量
调用从PHP分配的变量需在前加"$"符号.(译注:同php一样)
调用模板内的assign函数分配的变量也是这样.(译注:也是用$加变量名来调用)
示例:
index.php:
$smarty=newSmarty;
$smarty->assign('firstname','Doug');
$smarty->assign('lastLoginDate','January11th,2001');
$smarty->display('index.tpl');
index.tpl:
Hello{$firstname},gladtoseeyoucouldmakeit.
<p>
Yourlastloginwason{$lastLoginDate}.
输出:
HelloDoug,gladtoseeyoucouldmakeit.
<p>
YourlastloginwasonJanuary11th,2001.
2. 从配置文件读取的变量
配置文件中的变量需要通过用两个"#"或者是smarty的保留变量 $smarty.config.来调用(后面会讲到)
第二种语法在变量作为属性值并被引号括住的时候非常有用.
(译注:举个例子 {include file="#includefile#"} 这样#includefile#将被当作字符处理,而不表示配置文件变量,但可以这样表示{include file="`$smarty.config.includefile`"}不要忘了加``)
示例:
foo.conf:
pageTitle="Thisismine"
bodyBgColor="#eeeeee"
tableBorderSize="3"
tableBgColor="#bbbbbb"
rowBgColor="#cccccc"
index.tpl:
{config_loadfile="foo.conf"}
<html>
<title>{#pageTitle#}</title>
<bodybgcolor="{#bodyBgColor#}">
<tableborder="{#tableBorderSize#}"bgcolor="{#tableBgColor#}">
<trbgcolor="{#rowBgColor#}">
<td>First</td>
<td>Last</td>
<td>Address</td>
</tr>
</table>
</body>
</html>
index.tpl:
{config_loadfile="foo.conf"}
<html>
<title>{$smarty.config.pageTitle}</title>
<bodybgcolor="{$smarty.config.bodyBgColor}">
<tableborder="{$smarty.config.tableBorderSize}"bgcolor="{$smarty.config.tableBgColor}">
<trbgcolor="{$smarty.config.rowBgColor}">
<td>First</td>
<td>Last</td>
<td>Address</td>
</tr>
</table>
</body>
</html>
上述两种模板写法都输出:
<html>
<title>Thisismine</title>
<bodybgcolor="#eeeeee">
<tableborder="3"bgcolor="#bbbbbb">
<trbgcolor="#cccccc">
<td>First</td>
<td>Last</td>
<td>Address</td>
</tr>
</table>
</body>
</html>
看完上述内容,你们掌握如何正确的使用Smarty变量的方法了吗?如果还想学到更多技能或想了解更多相关内容,欢迎关注恰卡编程网行业资讯频道,感谢各位的阅读!