modifier.count_characters.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_characters modifier plugin
  9.  *
  10.  * Type:     modifier<br>
  11.  * Name:     count_characteres<br>
  12.  * Purpose:  count the number of characters in a text
  13.  * @link http://smarty.php.net/manual/en/language.modifier.count.characters.php
  14.  *          count_characters (Smarty online manual)
  15.  * @param string
  16.  * @param boolean include whitespace in the character count
  17.  * @return integer
  18.  */
  19. function smarty_modifier_count_characters($string, $include_spaces = false)
  20. {
  21.     if ($include_spaces)
  22.        return(strlen($string));
  23.     return preg_match_all("/[^s]/",$string, $match);
  24. }
  25. /* vim: set expandtab: */
  26. ?>