1. 程式人生 > >Twig中控制保留小數位數

Twig中控制保留小數位數

number_format

該number_format過濾器格式的數字

引數:
    decimal:       要顯示的小數點數
    decimal_point: 用於小數點的字元
    thousand_sep:  用於千位分隔符的字元

舉例:
    {{ 9800.333|number_format(2, '.', ',') }}{# outputs : 9,800.33 #}
    如果格式化負數的時候要注意要加括號
    {{ -9800.333  |number_format(2, '.', ',') }} {# outputs : -9 #}
    {{ (-9800.333)|number_format(2, '.', ',') }} {# outputs : -9,800.33 #}