(PHP 8 >= 8.4.0)
fpow — Raise one number to the power of another, according to IEEE 754
fpow(float $num, float $exponent): float
Returns the floating point result of raising num to the power of exponent. If num is zero and exponent is less than zero, then INF is returned.
numexponent Returns a float corresponding to $num$exponent.
Example #1 fpow() example
<?php var_dump(fpow(10, 2)); var_dump(fpow(0, -3)); var_dump(fpow(-1, 5.5)); ?>
The above example will output:
float(100) float(INF) float(NAN)
© 1997–2025 The PHP Documentation Group
Licensed under the Creative Commons Attribution License v3.0 or later.
https://www.php.net/manual/en/function.fpow.php