Usual maximum on 64-bits (bug #47718)

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@290980 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Jakub Vrana 2009-11-19 11:30:09 +00:00
parent 19042c49d8
commit 423eabfd02

View file

@ -81,7 +81,8 @@ integer : [+-]?decimal
<para>
The size of an <type>integer</type> is platform-dependent, although a maximum
value of about two billion is the usual value (that's 32 bits signed). PHP
value of about two billion is the usual value (that's 32 bits signed).
64-bits platforms usually have the maximum value of about 9E18. PHP
does not support unsigned <type>integer</type>s. <type>Integer</type> size
can be determined using the constant <constant>PHP_INT_SIZE</constant>, and
maximum value using the constant <constant>PHP_INT_MAX</constant> since