|
|

|
spacify
Inserta un espacio entre cada carácter de una variable. Usted puede
opcionalmente pasar un carácter (o una cadena) diferente para insertar.
Ejemplo 5-16. spacify
<?php
$smarty->assign('articleTitle', 'Something Went Wrong in Jet Crash, Experts Say.');
?>
|
Donde index.tpl es:
{$articleTitle}
{$articleTitle|spacify}
{$articleTitle|spacify:"^^"} |
Esta es la Salida:
Something Went Wrong in Jet Crash, Experts Say.
S o m e t h i n g W e n t W r o n g i n J e t C r a s h , E x p e r t s S a y .
S^^o^^m^^e^^t^^h^^i^^n^^g^^ ^^W^^e^^n^^t^^ ^^W^^r^^o^^n^^g^^ ^^i^^n^^ ^^J^^e^^t^^ ^^C^^r^^a^^s^^h^^,^^ ^^E^^x^^p^^e^^r^^t^^s^^ ^^S^^a^^y^^. |
|
Ver también wordwrap
y nl2br.
|
|
|