Jak wyświetlić liczbę po przecinku w smarty

Z Podręcznik Administratora by OPZ SGU
Wersja z dnia 19:23, 29 lut 2012 autorstwa Adminka23 (dyskusja | edycje) (Utworzył nową stronę „string_format <pre> <?php $smarty->assign('number', 23.5787446); ?> </pre> Where template is: <pre> {$number} {$number|string_format:"%.2f"} {$number|string_form...”)
(różn.) ← poprzednia wersja | przejdź do aktualnej wersji (różn.) | następna wersja → (różn.)
Przejdź do nawigacji Przejdź do wyszukiwania

string_format


<?php
$smarty->assign('number', 23.5787446);
?>

Where template is:

{$number}
{$number|string_format:"%.2f"}
{$number|string_format:"%d"}

Will output:

23.5787446
23.58
24