php decimal part of a number code example
Example: 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;