Smarty Icon

You may use the Smarty logo according to the trademark notice.

Smarty Template Engine Smarty Template Engine

For sponsorship, advertising, news or other inquiries, contact us at:

Sites Using Smarty

Advertisement

string_format

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