Monday, January 18, 2010

Smarty : Variable Modifiers (count_characters)

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

Parameter Position : 1
Type : boolean
Required : No
Default : FALSE
Description : This determines whether or not to include whitespace characters in the count.

Example : 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

No comments:

Post a Comment