fpow
(PHP 8 >= 8.4.0)
fpow — IEEE 754 に従い、数値をべき乗する
説明
num
の
exponent
乗の結果を浮動小数点数として返します。
num
が 0 で exponent
が負数の場合は、
INF
を返します。
パラメータ
num
- 使用する基数。
exponent
- 指数。
戻り値
$num$exponent
を
float で返します。
例
例1 fpow() の例
<?php
var_dump(fpow(10, 2));
var_dump(fpow(0, -3));
var_dump(fpow(-1, 5.5));
?>
上の例の出力は以下となります。
float(100) float(INF) float(NAN)
+add a note
User Contributed Notes
There are no user contributed notes for this page.
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google