Longhorn PHP 2025 - Speakers and Schedule Announced!

Voting

: max(seven, zero)?
(Example: nine)

The Note You're Voting On

jay at w3prodigy dot com
17 years ago
Note:

<?php
$int
= 0.99999999999999999;
echo
floor($int); // returns 1
?>
and
<?php
$int
= 0.9999999999999999;
echo
floor($int); // returns 0
?>

<< Back to user notes page

To Top