The bcsqrt function is very handy for finding the square root of numbers in the form of strings.
//EXAMPLE:
<?php
$arr = array(
"one" => "20",
"two" => "12"
);
echo bcsqrt($arr["one"], 3);
//OUTPUT: 4.472
(PHP 4, PHP 5, PHP 7)
bcsqrt — 임의 정밀도 수의 제곱근을 구합니다
$operand
[, int $scale
] )
operand
의 제곱근을 반환합니다.
operand
연산수, 문자열.
scale
이 선택적인 인수는 소수점 아래 자리수를 설정합니다. bcscale()을 사용하여 모든 함수에 대한 전역 기본값을 설정할 수 있습니다.
제곱근을 문자열로 반환하거나, operand
가 음수이면
NULL
을 반환합니다.
Example #1 bcsqrt() 예제
<?php
echo bcsqrt('2', 3); // 1.414
?>
The bcsqrt function is very handy for finding the square root of numbers in the form of strings.
//EXAMPLE:
<?php
$arr = array(
"one" => "20",
"two" => "12"
);
echo bcsqrt($arr["one"], 3);
//OUTPUT: 4.472