What is Smarty?
Why use it?
Use Cases and Work Flow
Syntax Comparison
Template Inheritance
Best Practices
Crash Course
You may use the Smarty logo according to the trademark notice.
For sponsorship, advertising, news or other inquiries, contact us at:
Posição do Parâmetro | Tipo | Requerido | Padrão | Descrição |
---|---|---|---|---|
1 | string | Sim | n/a | Esta é a string a ser substituida. |
2 | string | Sim | n/a | Esta é a string que irá substituir. |
Um simples localizar e substituir.
Example 5.16. replace
index.php: $smarty = new Smarty; $smarty->assign('articleTitle', "Child's Stool Great for Use in Garden."); $smarty->display('index.tpl'); index.tpl: {$articleTitle} {$articleTitle|replace:"Garden":"Vineyard"} {$articleTitle|replace:" ":" "} OUTPUT: Child's Stool Great for Use in Garden. Child's Stool Great for Use in Vineyard. Child's Stool Great for Use in Garden.