Answers for "php echo number with decimal"

PHP
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
0

php echo number with decimal

<?php

$number = 1234.56;

// english notation (default)
$english_format_number = number_format($number);
// 1,235

// French notation
$nombre_format_francais = number_format($number, 2, ',', ' ');
// 1 234,56

$number = 1234.5678;

// english notation without thousands separator
$english_format_number = number_format($number, 2, '.', '');
// 1234.57

?>
Posted by: Guest on June-07-2021

Browse Popular Code Answers by Language