Pyh.conf’25: a new PHP conference for the Russian-speaking community

Voting

: eight minus one?
(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