php decimal code example
Example 1: php number format
$num = 12345.6789;
echo number_format($num, 2, '.', '')
echo number_format($num, 3, ',', '.')
Example 2: php round decimal
$value = 1.23456789;
$rounded_value = round($value, 2);
Example 3: php number format
$num = 123456.789;
echo number_format($num);
echo number_format($num, 4);
echo number_format($num, 4, '#');
echo number_format($num, 5, '#', 'T');
Example 4: how to get only decimal value in php
$price = 1234.44;
$whole = intval($price);
$decimal1 = $price - $whole;
$decimal2 = round($decimal1, 2);
$decimal = substr($decimal2, 2);
if ($decimal == 1) { $decimal = 10; }
if ($decimal == 2) { $decimal = 20; }
if ($decimal == 3) { $decimal = 30; }
if ($decimal == 4) { $decimal = 40; }
if ($decimal == 5) { $decimal = 50; }
if ($decimal == 6) { $decimal = 60; }
if ($decimal == 7) { $decimal = 70; }
if ($decimal == 8) { $decimal = 80; }
if ($decimal == 9) { $decimal = 90; }
echo 'The dollar amount is ' . $whole . ' and the decimal amount is ' . $decimal;
Example 5: thousand seperator php
number_format($number);