Query: gmp_invert
OS: php
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
GMP_INVERT(3) 1 GMP_INVERT(3) gmp_invert - Inverse by moduloSYNOPSISGMP gmp_invert (GMP $a, GMP $b)DESCRIPTIONComputes the inverse of $a modulo $b.PARAMETERSo $a -Either a GMP number resource in PHP 5.5 and earlier, a GMP object in PHP 5.6 and later, or a numeric string provided that it is possible to convert the latter to a number. o $b -Either a GMP number resource in PHP 5.5 and earlier, a GMP object in PHP 5.6 and later, or a numeric string provided that it is possible to convert the latter to a number.RETURN VALUESA GMP number on success or FALSE if an inverse does not exist.EXAMPLESExample #1 gmp_invert(3) example <?php echo gmp_invert("5", "10"); // no inverse, outputs nothing, result is FALSE $invert = gmp_invert("5", "11"); echo gmp_strval($invert) . " "; ?> The above example will output: 9 PHP Documentation Group GMP_INVERT(3)
Related Man Pages |
---|
eval(3) - php |
gmp_div_q(3) - php |
gmp_gcdext(3) - php |
gmp_hamdist(3) - php |
gmp_setbit(3) - php |