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:
変数内の単語の数をカウントします。
Example 5.7. count_words
<?php $smarty->assign('articleTitle', 'Dealers Will Hear Car Talk at Noon.'); ?>
テンプレート
{$articleTitle} {$articleTitle|count_words}
出力
Dealers Will Hear Car Talk at Noon. 7
count_characters
、
count_paragraphs
および
count_sentences
.
も参照してください。