PHP 8.5.0 Beta 1 available for testing

Voting

: six plus three?
(Example: nine)

The Note You're Voting On

fabien dot villepinte at gmail dot com
6 years ago
It's important to note that the output depends on the precision directive.
<?php
var_dump
(10000000000000.5); // float(10000000000000)
ini_set('precision',-1);
var_dump(10000000000000.5); // float(10000000000000.5)
?>

<< Back to user notes page

To Top