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}}
php程式碼:
$smarty->assign('tmpStr',''); smarty代码: {{if $tmpStr|strlen > 0 }} 1 {{else}} 0 {{/if}}
透過php內建的函數is_array和count求得陣列長度,如下的程式碼輸出5
php程式碼:
$smarty->assign('tmpArr',array(1,2,3,4,5));
{{if $tmpArr|is_array && $tmpArr|@count > 0}} {{$tmpArr|@count}}{{else}} 0 {{/if}}
$smarty->assign('tmpStr','abb'); {{'b'|str_replace:'c':$tmpStr}}
acc
$smarty->assign('tmpStr','abb'); {{$tmpStr|substr:'1'}}
bb
{{$tmpStr|substr:'1':'1'}}
b
以上是php內建函數如何在smarty中呼叫的實例分享的詳細內容。更多資訊請關注PHP中文網其他相關文章!