PHP 5.6.31 Released

Voting

Please answer this simple SPAM challenge: seven plus two?
(Example: nine)

The Note You're Voting On

Anonymous
7 years ago
This functions return ceil($nb) if the double or float value is bigger than "$nb.5" else it's return floor($nb)

<?php
   
function arounds_int($nb) {
    
        if(!
is_numeric($nb)) {
            return
false;
        }
       
       
$sup = round($nb);
       
$inf = floor($nb);
       
$try = (double) $inf . '.5' ;
       
        if(
$nb > $try) {
            return
$sup;
        }
       
        return
$inf;
    }
?>

<< Back to user notes page

To Top