Smarty Icon

You may use the Smarty logo according to the trademark notice.

Smarty Template Engine Smarty Template Engine

For sponsorship, advertising, news or other inquiries, contact us at:

Sites Using Smarty

Advertisement

count_words

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.