gmp_divexact

PHP 4 >= 4.0.4, PHP 5, PHP 7, PHP 8
gmp_divexact - Exact division of numbers
Manual
Code Examples

gmp_divexact( GMP|int|string$num1, GMP|int|string$num2 ): GMP

Divides num1 by num2, using fast "exact division" algorithm. This function produces correct results only when it is known in advance that num2 divides num1.

Parameters

num1

The number being divided.

A GMP object, an int or a numeric string.

num2

The number that a is being divided by.

A GMP object, an int or a numeric string.

Return Values

A GMP object.

Example of gmp_divexact

Show all examples for gmp_divexact

PHP Version: