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:
Подсчитывает количество символов в переменной.
Позиция параметра | Тип | Обязателен | По умолчанию | Описание |
---|---|---|---|---|
1 | boolean | Нет | false | Определяет, учитывать ли пробелы при подсчете. |
Example 5.4. count_characters
<?php $smarty->assign('articleTitle', 'Cold Wave Linked to Temperatures.'); ?>
Шаблон:
{$articleTitle} {$articleTitle|count_characters} {$articleTitle|count_characters:true}
Результат обработки:
Cold Wave Linked to Temperatures. 29 33
См. также count_words, count_sentences и count_paragraphs.