Answers for "php decimal numbers"

PHP
10

php 3 digit decimal

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

convert number to 2 decimal places in php

echo round(5366.8122270742, 2); //5366.81
Posted by: Guest on October-01-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

Code answers related to "php decimal numbers"

Browse Popular Code Answers by Language