moontoast / math
A mathematics library, providing functionality for large numbers
Installs: 24 031 114
Dependents: 95
Suggesters: 12
Security: 0
Stars: 346
Watchers: 2
Forks: 24
Open Issues: 1
Requires
- php: >=5.3.3
- phpseclib/bcmath_compat: >=1.0.3
Requires (Dev)
- jakub-onderka/php-parallel-lint: ^0.9.0
- phpunit/phpunit: ^4.8 || ^5.5 || ^6.5 || ^7.0
- satooshi/php-coveralls: ^0.6.1
- squizlabs/php_codesniffer: ^2.3
README
PLEASE NOTE: This package is abandoned. Please transition to brick/math.
Moontoast Math Library
Moontoast\Math is useful for working with integers that are larger than (or may become larger than, through mathematical computations) PHP's max integer value for a given system. On 64-bit systems, this number is 9223372036854775807. On 32-bit systems, it is 2147483647. When overflowing this boundary, PHP turns the number into a float, reducing precision (see the PHP manual entry for Integers).
Moontoast\Math provides an easy-to-use wrapper around the bcmath extension, allowing one to perform mathematical calculations on numeric strings, going well outside the integer range of the system and maintaining arbitrary precision for more precise calculations.
Installation
The preferred method of installation is via Composer:
composer require moontoast/math
Examples
$bn = new \Moontoast\Math\BigNumber('9,223,372,036,854,775,808'); $bn->multiply(35); var_dump($bn->getValue()); var_dump($bn->convertToBase(16));
This produces the following output:
string(21) "322818021289917153280"
string(18) "118000000000000000"
You might want to use BigNumber to work with a UUID, which is an unsigned 128-bit integer. For example:
$uuid = \Moontoast\Math\BigNumber::convertToBase10('ff6f8cb0c57d11e19b210800200c9a66', 16);
This utility converts the UUID from hexadecimal (base 16) representation to a string representation of the unsigned 128-bit integer in decimal (base 10). You may now create a BigNumber object with it to perform calculations, if you wish.
$bn = new \Moontoast\Math\BigNumber($uuid); echo $bn; // 339532337419071774305803111643925486182
License
Copyright © 2013-2020 Moontoast, Inc.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.