From d0f5b88a939b4060cd026bc5a07cc59fd1f68ab7 Mon Sep 17 00:00:00 2001 From: Christoph Michael Becker Date: Sat, 9 Sep 2017 12:35:10 +0000 Subject: [PATCH] Fix supported number range libbcmath neither stores the decimal point nor a trailing nul byte, so actually numbers with up to 0x7fffffff digits are supported, if there is sufficient memory. git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@343027 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/bc/book.xml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/reference/bc/book.xml b/reference/bc/book.xml index cd2b44e7ce..977f6063c2 100644 --- a/reference/bc/book.xml +++ b/reference/bc/book.xml @@ -11,7 +11,8 @@ &reftitle.intro; For arbitrary precision mathematics PHP offers the Binary Calculator which - supports numbers of any size and precision up to 2147483647-1 (or 0x7FFFFFFF-1) decimals, represented as strings. + supports numbers of any size and precision up to 2147483647 (or 0x7FFFFFFF) decimals, + if there is sufficient memory, represented as strings.