kartavik / php-intmath
A library for arithmetic operations on integers that wraps around upon overflow.
Requires
- php: ^5.3.0|^7.0
- symfony/polyfill-php70: ^1.12
Requires (Dev)
- ext-curl: *
- phpunit/phpunit: ^4.0 | ^5.4 | ^6.0 | ^7.0 | ^8.2
- scrutinizer/ocular: ~1.1
- squizlabs/php_codesniffer: ^2.3 | ^3.2
This package is auto-updated.
Last update: 2024-10-13 02:22:56 UTC
README
PHP 5.3+ library for arithmetic operations on integers that wraps around upon overflow.
Attention
This library is not intended for use as a way to properly perform arithmetic operations on integers and should not be used in place of the native arithmetic operators or any other library designed for such purpose.
Unlike other languages that overflow large positive integers into large negative integers, PHP actually overflows integers to floating-point numbers. In most cases, arithmetic overflows must be treated as an unusual circumstance which requires special handling. However, there are some cases where such wrap-around behavior is actually useful - for example with TCP sequence numbers or certain algorithms, such as hash calculation. This utility class provides basic arithmetic functions that operate in accordance to that behaviour.
To illustrate, consider the following example:
// Output on 64-bit system: float(9.2233720368548E+18) var_dump(PHP_MAX_INT + 1); // Output on 64-bit system: int(-9223372036854775808) var_dump(IntMath::add(PHP_MAX_INT, 1));
As previously shown, adding one to the largest integer supported using native arithmetic operators will result in a floating-point number. By contrast, using IntMath::add() will cause an overflow, resulting in the smallest integer supported in this build of PHP.
The API is extensively documented in the source code. In addition, an HTML version is also available for more convenient viewing in browser.
Installation
Use Composer to install the package:
$ composer require kartavik/php-intmath
Operations
Currently, only the four basic arithmetic operations (addition, subtraction, multiplication and division) and negation are supported.
Negation
For integer values, negation is the same as subtraction from zero. Because PHP uses two's-complement representation for integers and the range of two's-complement values is not symmetric, the negation of the maximum negative integer results in that same maximum negative number. Despite the fact that overflow has occurred, no exception is thrown.
For all integer values $a
, -$a
equals (~$a) + 1
.
API example usage:
// Outputs int(-100) var_dump(IntMath::negate(100));
Addition
The result of adding two integers is the low-order bits of the true mathematical result as represented in a sufficiently wide two's-complement format. If overflow occurs, then the sign of the result may not be the same as the sign of the mathematical sum of the two values. Despite the overflow, no exception is thrown in this case.
API example usage:
// Outputs int(300) var_dump(IntMath::add(100, 200));
Subtraction
The subtraction of a positive number yields the same result as the addition of a negative number of equal magnitude. Furthermore, the subtraction from zero is the same as negation. The result is the low-order bits of the true mathematical result as represented in a sufficiently wide two's-complement format. If overflow occurs, then the sign of the result may not be the same as the sign of the mathematical difference of the two values. Despite the overflow, no exception is thrown in this case.
API example usage:
// Outputs int(90) IntMath::subtract(100, 10);
Multiplication
The result of multiplying two integers is the low-order bits of the true mathematical result as represented in a sufficiently wide two's-complement format. If overflow occurs, then the sign of the result may not be the same as the sign of the mathematical product of the two values. Despite the overflow, no exception is thrown in this case.
API example usage:
// Outputs int(200) IntMath::multiply(100, 2);
Division
The division rounds the result towards zero. Thus the absolute value of the result is the largest possible integer that is less than or equal to the absolute value of the quotient of the two operands. The result is zero or positive when the two operands have the same sign and zero or negative when the two operands have opposite signs.
There is one special case that does not satisfy this rule: if the dividend is
the negative integer of largest possible magnitude for its type, and the
divisor is -1
, then integer overflow occurs and the result is equal to the
dividend. Despite the overflow, no exception is thrown in this case. On the
other hand if the value of the divisor in an integer division is 0
, then a
DivisionByZeroException
is thrown.
API example usage:
// Outputs int(50) IntMath::divide(100, 2);
Change log
Please see CHANGELOG for more information what has changed recently.
Testing
$ composer test
Check out the Test Documentation for more details.
Contributing
Contributions to the package are always welcome!
- Report any bugs or issues you find on the issue tracker.
- You can grab the source code at the package's Git repository.
Please see CONTRIBUTING and CONDUCT for details.
Security
If you discover any security related issues, please email marcos@marcospassos.com instead of using the issue tracker.
Credits
License
All contents of this package are licensed under the MIT license.