count_paragraphs[단락 개수]
count_paragraphs[计算段数]
test.php:
$smarty = new Smarty;
$smarty->ass('articleTitle', "전쟁은 평화에 대한 희망을 어둡게 합니다. 어린이의 죽음은 폐허
커플의 Holiday.nn남자의 죽음은 외로움과 고립감을 유발합니다.");
$smarty->display('test.html');
test.html:
{$articleTitle}
{$articleTitle |count_paragraphs}
输출:
전쟁은 평화에 대한 희망을 어둡게 합니다. 자녀의 죽음으로 부부의 휴가가 망가졌습니다.
남자가 치명상을 입었습니다. 죽음은 외로움, 고립감을 유발합니다.
2