We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
The following code:
<?php $a = gmp_init(10000000000); var_dump(pow($a, $a)); // or var_dump($a**$a);
Resulted in this output:
gmp: overflow in mpz type Aborted (core dumped)
But I expected this output instead:
float(INF)
nightly
ubuntu 22.04