count_words[Wörter zählen]
count_words[计算词数]
test.php:
$smarty = new Smarty;
$smarty->assign('articleTitle', 'Dealers Will Hören Sie Car Talk unter Mittag.');
$smarty->display('test.html');
test.html:
{$articleTitle}
{$ ArtikelTitel|count_words}
输出:
Dealers Will Hören Sie mittags Car Talk.
7