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 | cat | Descrição |
---|---|---|---|---|
1 | string | Não | empty | Este é o valor para concatenar com a variável dada. |
Este valor é concatenado com a variável dada.
Example 5.4. cat
index.php: $smarty = new Smarty; $smarty->assign('articleTitle', "Psychics predict world didn't end"); $smarty->display('index.tpl'); index.tpl: {$articleTitle|cat:" yesterday."} MOSTRA: Psychics predict world didn't end yesterday.