bcsqrt
(PHP 4, PHP 5, PHP 7)
bcsqrt — 任意精度数字的二次方根
说明
bcsqrt (
string
$operand
[,
int $scale
] ) :
string
返回操作数
的二次方根.
返回值
返回二次方根的结果为字符串类型,如果操作数是负数则返回null.
范例
Example #1 bcsqrt() 示例
<?php
echo bcsqrt('2', 3); // 1.414
?>