PHP4 | PHP5 | PHP7 |
---|---|---|
支持 | 支持 | 支持 |
bcpow( string $left_operand , string $right_operand [, int $scale = int ])
bcpow() 左操做數的右操做數次方運算.php
參數 | 必需的 | 描述 |
---|---|---|
left_operand | 是 | 字符串類型的左操做數. |
right_operand | 是 | 字符串類型的右操做數. |
scale | 否 | 此可選參數用於設置結果中小數點後的小數位數。也可經過使用 bcscale() 來設置全局默認的小數位數,用於全部函數。. |
echo bcpow('4.2', '3', 2); // 74.08