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的
strtolower()
函数。
Example 5.13. lower
<?php $smarty->assign('articleTitle', 'Two Convicts Evade Noose, Jury Hung.'); ?>
模板:
{$articleTitle} {$articleTitle|lower}
输出:
Two Convicts Evade Noose, Jury Hung. two convicts evade noose, jury hung.
参见
upper
和
capitalize
.