fix to 2 decimal places php
return number_format((float)$number, 2, '.', '');
fix to 2 decimal places php
return number_format((float)$number, 2, '.', '');
php round down
// round down
echo floor(1.5); // prints 1
// round up
echo ceil(1.5); // prints 2
2 decimal round using php
// using round() function we can roundoff float values in php
$value = 58.24365;
round($value, 2);
//result 58.24
php round up
//round up to nearest integer
echo(ceil(0.60) . "<br>");
//result 1
php round up
<?php
echo 'Rounding modes with 9.5' . PHP_EOL;
var_dump(round(9.5, 0, PHP_ROUND_HALF_UP));
var_dump(round(9.5, 0, PHP_ROUND_HALF_DOWN));
var_dump(round(9.5, 0, PHP_ROUND_HALF_EVEN));
var_dump(round(9.5, 0, PHP_ROUND_HALF_ODD));
echo 'Rounding modes with 8.5' . PHP_EOL;
var_dump(round(8.5, 0, PHP_ROUND_HALF_UP));
var_dump(round(8.5, 0, PHP_ROUND_HALF_DOWN));
var_dump(round(8.5, 0, PHP_ROUND_HALF_EVEN));
var_dump(round(8.5, 0, PHP_ROUND_HALF_ODD));
?>
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us