smarty template engine
Friday, May 16, 2008  
download | documentation | faq | forum | mailing lists | changelog | contribs 


search for in the  


count_characters

This is used to count the number of characters in a variable.

Parameter PositionTypeRequiredDefaultDescription
1booleanNoFALSEThis determines whether or not to include whitespace characters in the count.

Example 5-4. count_characters

<?php

$smarty
->assign('articleTitle''Cold Wave Linked to Temperatures.');

?>

Where template is:

{$articleTitle}
{$articleTitle|count_characters}
{$articleTitle|count_characters:true}

Will output:

Cold Wave Linked to Temperatures.
29
33

See also count_words, count_sentences and count_paragraphs.




 

credits 

Smarty Copyright © 2002-2008 New Digital Group, Inc.
All rights reserved.
Last updated: Tue Feb 12 09:11:24 2008 CST