Files
smarty/libs/plugins/modifier.count_paragraphs.php

20 lines
438 B
PHP
Raw Normal View History

2002-01-31 20:49:40 +00:00
<?php
/*
* Smarty plugin
* -------------------------------------------------------------
* Type: modifier
* Name: count_paragraphs
* Purpose: count the number of paragraphs in a text
* -------------------------------------------------------------
*/
function smarty_modifier_count_paragraphs($string)
{
// count \r or \n characters
return count(preg_split('/[\r\n]+/', $string));
}
/* vim: set expandtab: */
?>