php8.5
Home/ Manual/ reference / gmp/ GNU Multiple Precision

GNU Multiple Precision

These functions allow for arbitrary-length integers to be worked with using the GNU MP library.

Intro

These functions allow for arbitrary-length integers to be worked with using the GNU MP library.

Note

Most GMP functions accept GMP number arguments. These are shown in this documentation as GMP objects. Most of these functions will also accept numeric and string arguments, so long as it is possible to convert the latter to a number. Also, if there is a more performant function that can operate on the arguments (integers only), then it will be used instead (this is done transparently). See also the gmp_init() function.

Note

The arithmetic, bitwise, and comparison operators may be used with the GMP objects returned from gmp_init() and other GMP functions.

Warning

Large integers must be specified as strings - otherwise, PHP will coerce them to floats, resulting in a loss of precision.

Setup Constants Examples Reference Gmp

Source: reference/gmp/book.xml · from the official PHP manual (php/doc-en)