ConFoo Montreal 2026: Call for Papers

Voting

: two plus three?
(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