fpow

Raise one number to the power of another, according to IEEE 754

説明

float fpow(float $num, float $exponent)

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.

パラメータ

num
The base to use.
exponent
The exponent.

戻り値

Returns a float corresponding to $num$exponent.

例1 fpow example

<?php
var_dump(fpow(10, 2));
var_dump(fpow(0, -3));
var_dump(fpow(-1, 5.5));
?>

上の例の出力は以下となります。

float(100)
float(INF)
float(NAN)

参考

  • Exponentiation operator **
  • pow
  • fdiv
  • fmod