PHP – 如何使用 bcsqrt() 函数获取任意精度数字的平方根?
在 PHP 中,**bcsqrt()** 函数用于获取任意精度数字的平方根。它接受任意精度数字作为字符串,并在将结果缩放至指定的精度后给出该数字的平方根。
语法
string bcsqrt($num_string, $scale)
参数
**bcsqrt()** 函数接受两个不同的参数:**$num_string** 和 **$scale**。
**$num_string −** 它表示要计算平方根的数字。这是一个字符串类型的参数。
**$scale −** 它指示输出中小数点后出现的数字位数。
返回值
**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
示例 2
<?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
广告