count_words[計算詞數(shù)]
##count_words[計算詞數(shù)]
test.php:#$smarty = new Smarty;
$smarty->assign('articleTitle', '經(jīng)銷商中午會聽到汽車談話聲。');
$smarty->display('test.html');
test.html:{$articleTitle}
{$articleTitle|count_words}
#輸出:##經(jīng)銷商中午會聽到汽車談話。 7
##