Javascript debugger
Website design
↑
It can be either a GMP number resource, or a numeric string given that it is possible to convert the latter to a number.
It can be either a GMP number resource, or a numeric string given that it is possible to convert the latter to a number.
<?php
echo gmp_invert("5", "10"); // no inverse, outputs nothing, result is FALSE
$invert = gmp_invert("5", "11");
echo gmp_strval($invert) . "\n";
?>
The above example will output:
9