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 | Este é o formato para ser usado. (sprintf) |
Este é um meio para formatar strings, como números decimais e outros. Use a sintaxe para sprintf para a formatação.
Example 5.18. string_format
index.php: $smarty = new Smarty; $smarty->assign('number', 23.5787446); $smarty->display('index.tpl'); index.tpl: {$number} {$number|string_format:"%.2f"} {$number|string_format:"%d"} MOSTRA: 23.5787446 23.58 24