Javascript debugger
Website design
↑
The base 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.
The positive power to raise the base.
<?php
$pow1 = gmp_pow("2", 31);
echo gmp_strval($pow1) . "\n";
$pow2 = gmp_pow("0", 0);
echo gmp_strval($pow2) . "\n";
$pow3 = gmp_pow("2", -1); // Negative exp, generates warning
echo gmp_strval($pow3) . "\n";
?>
The above example will output:
2147483648
1