PHP 8.4.2 Released!

gmp_sqrt

(PHP 4 >= 4.0.4, PHP 5, PHP 7, PHP 8)

gmp_sqrtCalculate square root

说明

gmp_sqrt(GMP|int|string $num): GMP

Calculates square root of num.

参数

num

GMP 对象、intstring,可以按照跟在 gmp_init() 中使用字符串并自动检测 base(即当 base 等于 0 时)相同的逻辑将其解释为数字。

返回值

The integer portion of the square root, as a GMP number.

示例

示例 #1 gmp_sqrt() example

<?php
$sqrt1
= gmp_sqrt("9");
$sqrt2 = gmp_sqrt("7");
$sqrt3 = gmp_sqrt("1524157875019052100");

echo
gmp_strval($sqrt1) . "\n";
echo
gmp_strval($sqrt2) . "\n";
echo
gmp_strval($sqrt3) . "\n";
?>

以上示例会输出:

3
2
1234567890

添加备注

用户贡献的备注

此页面尚无用户贡献的备注。
To Top