什么是 Smarty?
使用它的原因是什么?
用例和工作流程
语法比较
模板继承
最佳实践
速成课程
这用于将变量大写。这等同于 PHP strtoupper()
函数。
示例 5.23 上层
<?php $smarty->assign('articleTitle', "If Strike isn't Settled Quickly it may Last a While."); ?>
其中的模板是
{$articleTitle} {$articleTitle|upper}
将输出
If Strike isn't Settled Quickly it may Last a While. IF STRIKE ISN'T SETTLED QUICKLY IT MAY LAST A WHILE.
另见 lower
和 capitalize
。