mirror of
https://github.com/smarty-php/smarty.git
synced 2025-10-17 06:25:19 +02:00
20 lines
438 B
PHP
20 lines
438 B
PHP
<?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: */
|
|
|
|
?>
|