count_paragraphs

计算变量内容有多少个段落。


Example 5.5. count_paragraphs

  1. <?php
  2.  
  3. $smarty->assign('articleTitle',
  4. "War Dims Hope for Peace. Child's Death Ruins Couple's Holiday.\n\n
  5. Man is Fatally Slain. Death Causes Loneliness, Feeling of Isolation."
  6. );
  7.  
  8. ?>
  9.  

模板是:

  1. {$articleTitle}
  2. {$articleTitle|count_paragraphs}
  3.  

输出:

  1. War Dims Hope for Peace. Child's Death Ruins Couple's Holiday.
  2.  
  3. Man is Fatally Slain. Death Causes Loneliness, Feeling of Isolation.
  4. 2
  5.  

参见 count_characters, count_sentencescount_words.

原文: https://www.smarty.net/docs/zh_CN/language.modifier.count.paragraphs.tpl