count_paragraphs[計算段数]
test.php:
$smarty = new Smarty;
$smarty->assign('articleTitle', "戦争は平和への希望をかすめる。子供の死の廃墟
カップルの休日。\n\n男性は惨殺される。死は孤独感、孤立感を引き起こす。");
$smarty->display('test.html');
test.html:
{$articleTitle}
{$articleTitle|count_paragraphs}
出:
戦争は平和への希望を薄れさせます。子供の死の遺跡 夫婦の休日。
人間は致命的に殺された。死は孤独感、孤立感を引き起こします。
2