count_characters[문자수]
count_characters(변수의 문자 수 계산)
test.php:
$smarty = new Smarty;
$smarty->ass('articleTitle', '온도에 연결된 한파 .' );
$smarty->display('test.html');
test.html:
{$articleTitle}
{$articleTitle|count_characters}
{$articleTitle|count_characters:true} // 공백도 계산됨
출력:
온도와 연결된 한파.
29
33