SEARCH

このマニュアルはSmartyのものです。セキュリティなどの問題でRCMSでは利用できないものもありますので、ご注意ください。
count_sentences

count_sentences

変数内のセンテンスの数をカウントします。

例 5-6. count_sentences

<?php

$smarty
->assign('articleTitle',
                 
'Two Soviet Ships Collide - One Dies.
                 Enraged Cow Injures Farmer with Axe.'
                 
);

?>

テンプレート

{$articleTitle}
{$articleTitle|count_sentences}

出力

Two Soviet Ships Collide - One Dies. Enraged Cow Injures Farmer with Axe.
2

count_characterscount_paragraphs および count_words. も参照してください。

SEARCH