From 423eabfd02d97bd88ff4a68afb603cb59ee67372 Mon Sep 17 00:00:00 2001 From: Jakub Vrana Date: Thu, 19 Nov 2009 11:30:09 +0000 Subject: [PATCH] Usual maximum on 64-bits (bug #47718) git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@290980 c90b9560-bf6c-de11-be94-00142212c4b1 --- language/types/integer.xml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/language/types/integer.xml b/language/types/integer.xml index 87fb05eb68..74fce6797a 100644 --- a/language/types/integer.xml +++ b/language/types/integer.xml @@ -81,7 +81,8 @@ integer : [+-]?decimal The size of an integer 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 integers. Integer size can be determined using the constant PHP_INT_SIZE, and maximum value using the constant PHP_INT_MAX since