Update info regarding max integer size on 64bit Windows

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@350156 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Christoph Michael Becker 2020-07-15 10:02:46 +00:00
parent 3330bf610f
commit 411c8ecee0

View file

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