PHP - gmp_root() 函数



定义和用法

gmp_root() 函数返回根的整数值。

描述

gmp_root() 获取给定数字的 n 次方根,并返回整数值。

语法

gmp_root ( GMP $a , int $nth ) : GMP

参数

序号 参数及描述
1

a

可以是 GMP 资源编号、gmp 对象或数字字符串。

2

nth

要为数字 a 获取的正根。

返回值

PHP gmp_root() 函数从获取的根返回 GMP 数字作为整数。

PHP 版本

此函数将在 PHP 5.6.0 及更高版本中运行。

示例 1

gmp_root 的工作原理 -

<?php
   $num = gmp_root('144', 2);
   echo "The result is : ".$num;
?>

这将产生以下结果 -

The result is : 12

示例 2

gmp_root() 的工作原理 -

<?php
   $num = gmp_root('2685619', 3);
   echo "The result is : ".$num;
?>

这将产生以下结果 -

The result is : 139
php_function_reference.htm
广告