PHP Classes

File: web-app/lib/SMARTY/plugins/.svn/text-base/modifier.count_paragraphs.php.svn-base

Recommend this page to a friend!
  Classes of davifelipe   smart MVC   web-app/lib/SMARTY/plugins/.svn/text-base/modifier.count_paragraphs.php.svn-base   Download  
File: web-app/lib/SMARTY/plugins/.svn/text-base/modifier.count_paragraphs.php.svn-base
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: smart MVC
MVC framework using Smarty to render views
Author: By
Last change:
Date: 12 years ago
Size: 630 bytes
 

Contents

Class file image Download
<?php /** * Smarty plugin * @package Smarty * @subpackage plugins */ /** * Smarty count_paragraphs modifier plugin * * Type: modifier<br> * Name: count_paragraphs<br> * Purpose: count the number of paragraphs in a text * @link http://smarty.php.net/manual/en/language.modifier.count.paragraphs.php * count_paragraphs (Smarty online manual) * @author Monte Ohrt <monte at ohrt dot com> * @param string * @return integer */ function smarty_modifier_count_paragraphs($string) { // count \r or \n characters return count(preg_split('/[\r\n]+/', $string)); } /* vim: set expandtab: */ ?>