PHP では、bcsqrt() 関数を使用して、任意精度の数値の平方根を取得します。任意の精度の数値を文字列として受け入れ、結果を指定された精度にスケーリングした後、その数値の平方根を返します。
string bcsqrt($num_string, $scale)
bcsqrt()この関数は、2 つの異なるパラメータを受け入れます: $num_string と $規模###。 p>
$num_string - 平方根を計算する数値を表します。文字列型パラメータ。
$scale − は、出力の小数点以下の桁数を表します。 p>
bcsqrt()この関数は、数値の平方根を文字列形式で返します。
例 1< h2><?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 中国語 Web サイトの他の関連記事を参照してください。