PHP에서 bcsqrt() 함수는 임의의 정밀도 숫자의 제곱근을 구하는 데 사용됩니다. 임의의 정밀도 숫자를 문자열로 받아들이고 결과를 지정된 정밀도로 조정한 후 해당 숫자의 제곱근을 제공합니다.
string bcsqrt($num_string, $scale)
bcsqrt() 이 함수는 $num_string 및 $scale이라는 두 가지 매개 변수를 허용합니다. p>
$num_string - 제곱근을 계산할 숫자를 나타냅니다. 문자열 유형 매개변수.
$scale −은 출력에서 소수점 뒤에 나타나는 자릿수를 나타냅니다. p>
bcsqrt() 함수는 숫자의 제곱근을 문자열 형식으로 반환합니다.
< h2>예제 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 중국어 웹사이트의 기타 관련 기사를 참조하세요!