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
This commit is contained in:
Christoph Michael Becker 2017-09-09 12:35:10 +00:00
parent f922f1a7e5
commit d0f5b88a93

View file

@ -11,7 +11,8 @@
&reftitle.intro;
<para>
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 <literal>2147483647</literal> (or <literal>0x7FFFFFFF</literal>) decimals,
if there is sufficient memory, represented as strings.
</para>
<caution>
<para>