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_characters

Posizione del Parametro Tipo Obbligatorio Default Descrizione
1 booleano No false Stabilisce se gli spazi devono essere inclusi nel conteggio.

E' usato per contare il numero di caratteri contenuti in una variabile.

Example 5.3. count_characters


<?php

$smarty = new Smarty;
$smarty->assign('articleTitle', 'Cold Wave Linked to Temperatures.');
$smarty->display('index.tpl');

?>

   

Dove index.tpl è:


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

   

Questo stamperà:


Cold Wave Linked to Temperatures.
29
33