PageRenderTime 45ms CodeModel.GetById 24ms RepoModel.GetById 1ms app.codeStats 0ms

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

https://bitbucket.org/mattraykowski/ryzomcore_demoshard
PHP | 28 lines | 6 code | 4 blank | 18 comment | 0 complexity | 69c3de3fb2f3354af5198d6024337f07 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_sentences modifier plugin
  9. *
  10. * Type: modifier<br>
  11. * Name: count_sentences
  12. * Purpose: count the number of sentences in a text
  13. * @link http://smarty.php.net/manual/en/language.modifier.count.paragraphs.php
  14. * count_sentences (Smarty online manual)
  15. * @param string
  16. * @return integer
  17. */
  18. function smarty_modifier_count_sentences($string)
  19. {
  20. // find periods with a word before but not after.
  21. return preg_match_all('/[^\s]\.(?!\w)/', $string, $match);
  22. }
  23. /* vim: set expandtab: */
  24. ?>