|
|

|
spacify
spacify è un modo per inserire uno spazio fra tutti i caratteri di una variabile.
E' possibile, opzionalmente, passare un diverso carattere (o stringa) da inserire.
Esempio 5-16. spacify
<?php $smarty = new Smarty; $smarty->assign('articleTitle', 'Something Went Wrong in Jet Crash, Experts Say.'); $smarty->display('index.tpl'); ?>
|
Dove index.tpl è:
{$articleTitle}
{$articleTitle|spacify}
{$articleTitle|spacify:"^^"} |
Questo stamperà:
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^^. |
|
|
|
|