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:
与えられた変数内の全ての改行文字 "\n"
を html の <br />
タグに変換します。
これは PHP の
nl2br()
関数と同義です。
Example 5.14. nl2br
<?php $smarty->assign('articleTitle', "Sun or rain expected\ntoday, dark tonight" ); ?>
テンプレート
{$articleTitle|nl2br}
出力
Sun or rain expected<br />today, dark tonight
word_wrap
、
count_paragraphs
および
count_sentences
も参照してください。