/framework/vendor/smarty3/lib/libs/plugins/modifier.count_words.php

http://zoop.googlecode.com/ · PHP · 25 lines · 6 code · 2 blank · 17 comment · 0 complexity · fdab09aafe8d934f92bb60f1bf47e359 MD5 · raw file

  1. <?php
  2. /**
  3. * Smarty plugin
  4. * @package Smarty
  5. * @subpackage PluginsModifier
  6. */
  7. /**
  8. * Smarty count_words modifier plugin
  9. *
  10. * Type: modifier<br>
  11. * Name: count_words<br>
  12. * Purpose: count the number of words in a text
  13. * @link http://smarty.php.net/manual/en/language.modifier.count.words.php
  14. * count_words (Smarty online manual)
  15. * @author Monte Ohrt <monte at ohrt dot com>
  16. * @param string
  17. * @return integer
  18. */
  19. function smarty_modifier_count_words($string)
  20. {
  21. return str_word_count($string);
  22. }
  23. ?>