What is Smarty?
Why use it?
Use Cases and Work Flow
Syntax Comparison
Template Inheritance
Best Practices
Crash Course
You may use the Smarty logo according to the trademark notice.
For sponsorship, advertising, news or other inquiries, contact us at:
Compte le nombre de mots dans une variable.
Example 5.7. count_words
<?php $smarty->assign('TitreArticle', 'Un anneau pour les gouverner tous.'); ?>
Où le template est :
{$titreArticle} {$titreArticle|count_words}
Affichera :
Un anneau pour les gouverner tous. 6
Voir aussi
count_characters
,
count_paragraphs
et
count_sentences
.