game/onyx2/modules/templates/smarty/plugins/modifier.count_words.php

26 lines
531 B
PHP
Raw Normal View History

2009-11-01 11:00:00 +00:00
<?php
/**
* Smarty plugin
* @package Smarty
2020-11-15 15:12:32 +00:00
* @subpackage PluginsModifier
2009-11-01 11:00:00 +00:00
*/
/**
* Smarty count_words modifier plugin
*
* Type: modifier<br>
* Name: count_words<br>
* Purpose: count the number of words in a text
* @link http://smarty.php.net/manual/en/language.modifier.count.words.php
* count_words (Smarty online manual)
* @author Monte Ohrt <monte at ohrt dot com>
* @param string
* @return integer
*/
function smarty_modifier_count_words($string)
{
2020-11-15 15:12:32 +00:00
return str_word_count($string);
2009-11-01 11:00:00 +00:00
}
?>