how do i round in php with keeping the two zeros

后端 未结 3 816
感动是毒
感动是毒 2021-01-03 21:13

I have this php


and the $price maybe 1.0000

i want 1.00

相关标签:
3条回答
  • 2021-01-03 21:52

    number_format is your best bet.

    string number_format ( float $number , int $decimals = 0 , string $dec_point = '.' , string $thousands_sep = ',' )
    

    Example:

    <?php echo number_format(1.0000, 2, '.', ','); ?>
    
    0 讨论(0)
  • 2021-01-03 22:07

    number_format works:

    echo number_format($price, 2);

    0 讨论(0)
  • 2021-01-03 22:17

    The following printf() call should work for you:

    <?php printf("%.2f", $price); ?>
    

    The documentation for this syntax is best described on the sprintf() page.

    0 讨论(0)
提交回复
热议问题