• 首页
  • vue
  • TypeScript
  • JavaScript
  • scss
  • css3
  • html5
  • php
  • MySQL
  • redis
  • jQuery
  • bcsqrt()

    (PHP 4, PHP 5, PHP 7)

    任意精度数字的二次方根

    说明

    bcsqrt(string $operand[,int $scale]): string

    返回操作数的二次方根.

    参数

    $operand

    字符串类型的操作数.

    $scale

    此可选参数用于设置结果中小数点后的小数位数。也可通过使用bcscale()来设置全局默认的小数位数,用于所有函数。

    返回值

    返回二次方根的结果为字符串类型,如果操作数是负数则返回null.

    范例

    bcsqrt()示例

    <?php
    echo bcsqrt('2', 3); // 1.414
    ?>
    

    参见

    上篇:bcscale()

    下篇:bcsub()