(PHP 4 >= 4.0.4, PHP 5, PHP 7, PHP 8)
gmp_invert — Inverso del modulo
Computa el inverso del modulo de num1
num2.
num1base es igual a 0).
num2base es igual a 0).
Un número GMO en éxito o false Si el inverso.
Ejemplo #1 Ejemplo de gmp_invert()
<?php
echo gmp_invert("5", "10"); // sin inverso, ninguna salida, el resultado es falso
$invert = gmp_invert("5", "11");
echo gmp_strval($invert) . "\n";
?>El ejemplo anterior mostrará:
9
Example #2 gmp_invert() example
<?php
echo gmp_invert("5", "10"); // no inverse, outputs nothing, result is FALSE
It means (5 * x ) mod 10 = 1. And with this function we want a value for x, because of mod 10, x should be {1.. 10-1(9)}, so :
5 * 1 mod 10 = 5
5 * 2 mod 10 = 0
5 * 3 mod 10 = 5
5 * 4 mod 10 = 0
5 * 5 mod 10 = 5
5 * 6 mod 10 = 0
5 * 7 mod 10 = 5
5 * 8 mod 10 = 0
5 * 9 mod 10 = 5
We don't have any 1 in the results. so it will be False.
$invert = gmp_invert("5", "11");
echo gmp_strval($invert) . "\n";
?>
The above example will output:
9
5 * 9 mod 11 = 1