count_character...로그인

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

다음 섹션
<?php echo "count_characters(计算变量里的字符数)";
코스웨어