Counting words and charaters using Smarty
we can count characters using smarty as follows.
<?php
$smarty->assign(’articleTitle’, ‘This is test string.’);
?>
Where template is:
{$articleTitle} // Display the text
{$articleTitle|count_characters} //Count characters without space
{$articleTitle|count_characters:true} //Count characters with space
{$articleTitle|count_words} //Count words
Output:
This is test string.
16
20
4
