modifier.count_paragraphs.php
上传用户:xjjlds
上传日期:2015-12-05
资源大小:22823k
文件大小:1k
源码类别:

多媒体编程

开发平台:

Visual C++

  1. <?php
  2. /**
  3.  * Smarty plugin
  4.  * @package Smarty
  5.  * @subpackage plugins
  6.  */
  7. /**
  8.  * Smarty count_paragraphs modifier plugin
  9.  *
  10.  * Type:     modifier<br>
  11.  * Name:     count_paragraphs<br>
  12.  * Purpose:  count the number of paragraphs in a text
  13.  * @link http://smarty.php.net/manual/en/language.modifier.count.paragraphs.php
  14.  *          count_paragraphs (Smarty online manual)
  15.  * @param string
  16.  * @return integer
  17.  */
  18. function smarty_modifier_count_paragraphs($string)
  19. {
  20.     // count r or n characters
  21.     return count(preg_split('/[rn]+/', $string));
  22. }
  23. /* vim: set expandtab: */
  24. ?>