|
|
|
|
| Smarty Manual |
|---|
| Prev | Chapter 5. Variable Modifiers | Next |
spacify| Parameter Position | Type | Required | Default | Description |
|---|
| 1 | string | No | one space | This what gets inserted between each character of
the variable. |
spacify is a way to insert a space between every character of a variable.
You can optionally pass a different character (or string) to insert.
Example 5-16. spacify
<?php $smarty = new Smarty; $smarty->assign('articleTitle', 'Something Went Wrong in Jet Crash, Experts Say.'); $smarty->display('index.tpl'); ?>
|
Where index.tpl is:
{$articleTitle}
{$articleTitle|spacify}
{$articleTitle|spacify:"^^"} |
This should output:
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^^. |
|
|
|
|
|
|
|
|
|
Disclaimers: This
document is provided as free service for the benefits of Active-Venture.com's web hosting customers only. |
|
|
|
Quotes: A man who is angry on the right grounds, against the right persons, in the right manner, at the right moment, and for the right length of time deserves great praise.
|
|
|
|
|