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