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