smarty @Wiki

wordwrap

最終更新:

匿名ユーザー

- view
だれでも歓迎! 編集

wordwrap

パラメータの位置 型? 必須 デフォルト 概要
1 integer? No 80 ワードラップするカラム幅
2 string? No \n ワードラップに使用される文字列
3 boolean? No false ワードラップを単語の境界で行うか(false)、厳密なキャラクタ数で行うか(true)

指定したカラム幅で文字列をワードラップします(デフォルトは80)。
第2パラメータには、次の行にワードラップするために使用される文字列を 指定する事が出来ます(デフォルトは\n)。
デフォルトでは単語の境界でワードラップを行います。 厳密な文字数でワードラップしたい場合は第3パラメータにtrueを渡します。

例 5-22. wordwrap

<?php
$smarty = new Smarty;
$smarty->assign('articleTitle', "Blind woman gets new kidney from dad she hasn't seen in years.");
$smarty->display('index.tpl');
?>
index.tpl : 
{$articleTitle}

{$articleTitle|wordwrap:30}

{$articleTitle|wordwrap:20}

{$articleTitle|wordwrap:30:"<br />\n"}

{$articleTitle|wordwrap:30:"\n":true}
出力 : 
Blind woman gets new kidney from dad she hasn't seen in years.

Blind woman gets new kidney
from dad she hasn't seen in
years.

Blind woman gets new
kidney from dad she
hasn't seen in
years.

Blind woman gets new kidney<br />
from dad she hasn't seen in<br />
years.

Blind woman gets new kidney
from dad she hasn't seen in
years.
ウィキ募集バナー