Smarty 图标

您可以根据商标声明使用 Smarty 徽标。

Smarty Template Engine Smarty Template Engine

如有赞助、广告、新闻或其他查询,请联系我们:

使用 Smarty 的网站

广告

upper

这用于将变量大写。这等同于 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.

   

另见 lowercapitalize