在 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中文網其他相關文章!