説明
string bcsqrt(string $num
, intnull $scale
= null
)
num
の平方根を返します。
パラメータ
-
num
-
オペランドを表す、BCMath で有効な数値形式の文字列。
-
scale
-
This parameter is used to set the number of digits after the decimal place in the result.
If
null
, it will default to the default scale set with bcscale,
or fallback to the value of the
bcmath.scale
INI directive.
戻り値
平方根を、BCMath で有効な数値形式の文字列で返します。
エラー / 例外
この関数は、以下の場合に ValueError をスローします:
num
が、BCMath で有効でない数値形式の文字列である場合
num
が 0
より小さい場合
scale
が範囲外の値である場合
例
例1 bcsqrt の例
<?php
echo bcsqrt('2', 3); // 1.414
?>