CleverCode发现smarty中调用php内置函数可以通过|实现。|前后没有空格。如果是数组求count需要加上@。
1个参数时候:
{
{'param1'|functionName}}
例如
{
{$tmpStr|strlen}}
2个参数时候:
{
{'param1'|functionName:'param2'}}
{$tmpStr|substr:'1'}
多个参数时候:
{
{'param1'|functionName:'param2':'param3'..}}
{
{$tmpStr|substr:'1':'2'}}
{ {'a'|str_replace:'A':$tmpStr}}
1 marty判断是否为空
如下代码php分配给tmpStr为空或没分配;那么smarty中输出0。这个是调用了php的内置函数strlen
php代码:
$smarty->assign('tmpStr','');
smarty代码:
{
{if $tmpStr|strlen > 0 }}
1
{
{else}}
0
{
{/if}}
2 marty求数组长度
通过php内置的函数i