codecamp

Smarty:upper

upper

将变量值转成大写字母。 等同于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.

Smarty:unescape
Smarty:wordwrap
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定