在 PHP 中,bcsqrt() 函数用于获取任意精度数字的平方根。它接受任意精度数字作为字符串,并在将结果缩放到指定精度后给出该数字的平方根。
string bcsqrt($num_string, $scale)
bcsqrt()函数接受两个不同的参数:$num_string和$scale。 p>
$num_string - 它表示要计算其平方根的数字。字符串类型参数。
$scale − 表示输出中小数点后出现的位数。 p>
bcsqrt()函数以字符串形式返回数字的平方根。
示例1<?php // input numbers with arbitrary precision $num_string = "22"; // below bcsqrt function calculates the square root $result= bcsqrt($num_string); echo "Output without scale value: ", $result; ?>
Output without scale value: 4
<?php // input numbers with arbitrary precision $num_string = "22"; //scale value 3 $scale="3"; // below bcsqrt function calculates the square root $result= bcsqrt($num_string, $scale); echo "Output with scale value: ", $result; ?>
Output with scale value: 4.690
以上是PHP - 如何使用bcsqrt()函数获取任意精度数字的平方根?的详细内容。更多信息请关注PHP中文网其他相关文章!