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:
Posición del Parametro | Tipo | Requerido | Default | Descripción |
---|---|---|---|---|
1 | string | Si | n/a | Este es el formato que debera usar. (sprintf) |
Esta es una manera de formatear cadenas, como números decimales y otros. Use la sintaxis de sprintf para formatearlo.
Example 5.17. string_format
<?php $smarty->assign('number', 23.5787446); ?>
Donde index.tpl es:
{$number} {$number|string_format:"%.2f"} {$number|string_format:"%d"}
Esta es la Salida:
23.5787446 23.58 24
Ver también date_format.