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:
Posición del Parametro | Tipo | Requerido | Default | Descripción |
---|---|---|---|---|
1 | boolean | No | false | Este determina cuando incluir o no los espacios en blanco al contar. |
Este es usado para contar el número de carácteres en una variable.
Example 5.4. count_characters
<?php $smarty->assign('articleTitle', 'Cold Wave Linked to Temperatures.'); ?>
Donde el template es:
{$articleTitle} {$articleTitle|count_characters} {$articleTitle|count_characters:true}
esta es la salida:
Cold Wave Linked to Temperatures. 29 33
ver también count_words, count_sentences y count_paragraphs.