Answers for "php round figure function"

PHP
3

php round up

//round up to nearest integer
echo(ceil(0.60) . "<br>");
//result 1
Posted by: Guest on June-09-2020
-1

simple php round example

<?php
echo(round(0.50));
?>
Posted by: Guest on April-10-2022

Browse Popular Code Answers by Language