PageRenderTime 48ms CodeModel.GetById 22ms RepoModel.GetById 0ms app.codeStats 0ms

/code/ryzom/tools/server/admin/smarty/plugins/modifier.count_characters.php

https://bitbucket.org/SirCotare/ryzom
PHP | 31 lines | 8 code | 5 blank | 18 comment | 1 complexity | b8e36f3c6070c42ecf9d885b6c7f0faf MD5 | raw file
Possible License(s): AGPL-3.0, GPL-3.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. * @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. ?>