spacify

spacify会在变量的字符串中插入空格。 你可以设置插入的是空格或者别的字符。

参数顺序 类型 必选参数 默认值 说明
1 string No one space 插入字符间的字符

Example 5.17. spacify


<?php

$smarty->assign('articleTitle', 'Something Went Wrong in Jet Crash, Experts Say.');

?>

   

模板:


{$articleTitle}
{$articleTitle|spacify}
{$articleTitle|spacify:"^^"}

   

输出:


Something Went Wrong in Jet Crash, Experts Say.
S o m e t h i n g   W .... snip ....  s h ,   E x p e r t s   S a y .
S^^o^^m^^e^^t^^h^^i^^n^^g^^ .... snip .... ^^e^^r^^t^^s^^ ^^S^^a^^y^^.

   

参见 wordwrapnl2br.