Voting

: min(six, one)?
(Example: nine)

The Note You're Voting On

chudinov at yahoo dot com
11 years ago
Looks like since version 5.4.22 var_export uses the serialize_precision ini setting, rather than the precision one used for normal output of floating-point numbers.
As a consequence since version 5.4.22 for example var_export(1.1) will output 1.1000000000000001 (17 is default precision value) and not 1.1 as before.

<?php
//ouput 1.1000000000000001
var_export(1.1)
?>

<< Back to user notes page

To Top