modifier.count_characters.php 695 B

12345678910111213141516171819202122232425262728293031
  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. ?>