Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<?php
function cutzero ($value)
{
return (int) $value;
}
$a = 12345.000000;
print cutzero ($a);
?>
<?php
$a = 8.5000000068;
$b = number_format ($a, 1);
print $b;
?>
<?php
print '<pre>';
$a = array (8.500, 8.125, 6.250, 11.000);
foreach ($a as $b)
{
print rtrim ($b, '.0');
print "\n";
}
?>
8.5
8.125
6.25
11
$decimals = 3;
$blah = substr(strrpos($blah, ".") + $decimals, strlen($blah));