diff --git a/language/types/integer.xml b/language/types/integer.xml index bd6deb0b0b..22e25813ac 100644 --- a/language/types/integer.xml +++ b/language/types/integer.xml @@ -235,7 +235,7 @@ var_dump(round(25/7)); // float(4) If the float is beyond the boundaries of integer (usually +/- 2.15e+9 = 2^31 on 32-bit platforms and +/- 9.22e+18 = 2^63 on 64-bit platforms other than - Windows), the result is undefined, since the float doesn't + Windows prior to PHP 7), the result is undefined, since the float doesn't have enough precision to give an exact integer result. No warning, not even a notice will be issued when this happens!