count_sentences[문장 개수]
count_sentences[计算句数]
test.php:
$smarty = new Smarty;
$smarty->ass('articleTitle', '두 척의 소련 선박 충돌 - 한 척이 죽습니다. 분노한 소 도끼로 농부에게 부상을 입혔습니다.');
$smarty->display('test.html');
test.html:
{$articleTitle}
{$articleTitle|count_sentences}
输출:
두 척의 소련 선박이 충돌 - 한 척이 죽습니다. 분노한 소가 도끼로 농부를 다치게 합니다.
2