php man page for gmp_invert

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 modulo

SYNOPSIS
GMP gmp_invert (GMP $a, GMP $b)
DESCRIPTION
Computes the inverse of $a modulo $b.
PARAMETERS
o $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 VALUES
A GMP number on success or FALSE if an inverse does not exist.
EXAMPLES
Example #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
gmp_div_q(3) - php
gmp_div_r(3) - php
gmp_gcdext(3) - php
gmp_random(3) - php
php_strip_whitespace(3) - php
Similar Topics in the Unix Linux Community
Simple rules of the UNIX.COM forums:
New Code Tags (Syntax Highlighting)
Please Welcome Ravinder Singh to the Moderation Team
Please Welcome Nicki Paul to the Moderator Team!