count_characters[文字?jǐn)?shù)]
count_characters(変數(shù)內(nèi)の文字?jǐn)?shù)を數(shù)える)
##test.php:$smarty = new Smarty;
$smarty->assign('articleTitle', '寒波は気溫と関係している。');
$smarty->display('test.html');
test.html:{$articleTitle}
{$articleTitle|count_characters}
{$articleTitle|count_characters:true} //スペースもカウントされます
出力:寒波は気溫と関係している。
29
33