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 | No | 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
も参照してください。