note 98149 modified in function.floor by thiago

[email protected]
Newsgroups php.notes
Message-ID <[email protected]>
Another quick way to round down to the nearest 100 (including 0):

<?php
function floor100($num) {
    return (floor($num / 100) * 100);
}
?>

--was--
Another quick way to round down to the nearest 100 (including 0):

function floor100($num) {
    return (floor($num / 100) * 100);
}

http://php.net/manual/en/function.floor.php
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.