Voting

The Note You're Voting On

fabien dot villepinte at gmail dot com
5 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