PageRenderTime 49ms CodeModel.GetById 27ms RepoModel.GetById 0ms app.codeStats 0ms

/template_engines_bench/libs/lapa/Plugins/modifier/modifier.count_characters.php

https://github.com/limb-php-framework/limb-tools
PHP | 32 lines | 8 code | 5 blank | 19 comment | 1 complexity | 0898e862186d705215c54b4569bd1319 MD5 | raw file
Possible License(s): AGPL-1.0, LGPL-2.1
  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 lapa_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. ?>