PageRenderTime 45ms CodeModel.GetById 23ms RepoModel.GetById 0ms app.codeStats 0ms

/src/_includes/Smarty/plugins/modifier.count_characters.php

https://bitbucket.org/dereckson/icedeck
PHP | 32 lines | 8 code | 5 blank | 19 comment | 1 complexity | 91694b84f8b86aa551ff49ced16dbd11 MD5 | raw file
Possible License(s): GPL-2.0
  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. * @author Monte Ohrt <monte at ohrt dot com>
  16. * @param string
  17. * @param boolean include whitespace in the character count
  18. * @return integer
  19. */
  20. function smarty_modifier_count_characters($string, $include_spaces = false)
  21. {
  22. if ($include_spaces)
  23. return(strlen($string));
  24. return preg_match_all("/[^\s]/",$string, $match);
  25. }
  26. /* vim: set expandtab: */
  27. ?>