Answers for "php always show 2 decimal places"

PHP
10

fix to 2 decimal places php

return number_format((float)$number, 2, '.', '');
Posted by: Guest on October-23-2020
8

php number format

// string number_format ($number, $decimals, $decimalpoint, $seperator)

// Enter the number you wish to format using decimals
// to set the number of decimal places
// You can replace the '.' with your own string
// with the decimalpoint parameter.
// With seperator, you can specify a string to be used
// to seperate thousands.

$num = 123456.789;
echo number_format($num); // 123,456
echo number_format($num, 4); // 123,456.7890
echo number_format($num, 4, '#'); // 123,456#7890
echo number_format($num, 5, '#', 'T'); // 123T456#78900
Posted by: Guest on February-20-2020
0

php echo number 2 decimal places "print_r"

Array
(
    [0] => 0
    [1] => 0.16666666666667
    [2] => 0.33333333333333
    [3] => 0.5
)
Posted by: Guest on June-13-2021

Code answers related to "php always show 2 decimal places"

Browse Popular Code Answers by Language