Jak wyświetlić liczbę po przecinku w smarty: Różnice pomiędzy wersjami

Z Podręcznik Administratora by OPZ SGU
Przejdź do nawigacji Przejdź do wyszukiwania
(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...”)
 
 
(Nie pokazano 2 pośrednich wersji utworzonych przez tego samego użytkownika)
Linia 1: Linia 1:
string_format
'''string_format'''


<pre>
<pre>
Linia 8: Linia 8:
</pre>
</pre>
    
    
Where template is:
W pliku tpl


<pre>
<pre>
Linia 16: Linia 16:
</pre>
</pre>
    
    
Will output:
Wynik:


<pre>
<pre>
Linia 23: Linia 23:
24
24
</pre>
</pre>
[[Category:PHP]]
[[Category:SMARTY]]

Aktualna wersja na dzień 19:28, 29 lut 2012

string_format


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

W pliku tpl

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

Wynik:

23.5787446
23.58
24