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:
Posizione del Parametro | Tipo | Obbligatorio | Default | Descrizione |
---|---|---|---|---|
1 | stringa | Sì | nessuno | E' il formato da usare. (sprintf) |
Questo è un modo di formattare stringhe, ad esempio per i numeri decimali e altro. Utilizzare la sintassi della funzione PHP sprintf().
Example 5.17. string_format
<?php $smarty = new Smarty; $smarty->assign('number', 23.5787446); $smarty->display('index.tpl'); ?>
Dove index.tpl è:
{$number} {$number|string_format:"%.2f"} {$number|string_format:"%d"}
Questo stamperà:
23.5787446 23.58 24