gmp_invert
(PHP 4 >= 4.0.4, PHP 5)
gmp_invert — Inverse by modulo
Opis
resource gmp_invert
( resource $a
, resource $b
)
Computes the inverse of a modulo b .
Parametry
- a
-
Może być zarówno numerem GMP zasób, lub numerycznym łańcuchem znaków, który można skonwertować z liter do liczb.
- b
-
Może być zarówno numerem GMP zasób, lub numerycznym łańcuchem znaków, który można skonwertować z liter do liczb.
Zwracane wartości
A GMP number on success or FALSE if an inverse does not exist.
Przykłady
Example #1 gmp_invert() example
<?php
echo gmp_invert("5", "10"); // no inverse, outputs nothing, result is FALSE
$invert = gmp_invert("5", "11");
echo gmp_strval($invert) . "\n";
?>
Powyższy przykład wyświetli:
9
gmp_invert
There are no user contributed notes for this page.
