What is Smarty?
Why use it?
Use Cases and Work Flow
Syntax Comparison
Template Inheritance
Best Practices
Crash Course
You may use the Smarty logo according to the trademark notice.
For sponsorship, advertising, news or other inquiries, contact us at:
将变量值转成大写字母。
等同于PHP的
strtoupper()
函数。
Example 5.23. upper
<?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
.