当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP gmp_sqrt()用法及代码示例


gmp_sqrt()是PHP中的内置函数,用于计算GMP数的平方根(GNU多精度:适用于大数)。该函数仅返回GMP编号平方根的整数部分。

用法:

gmp_sqrt ( $num )

参数:此函数接受GMP数字$num作为强制参数,如上面的语法所示。此参数可以是PHP 5.6和更高版本中的GMP对象,或者也可以传递数字字符串,只要可以将该字符串转换为数字即可。


返回值:此函数返回一个GMP编号,该编号是作为参数传递给它的GMP编号的平方根。此函数仅返回作为参数传递给它的GMP编号平方根的整数部分。

例子:

Input : "9"
Output : 3

Input : "24"
Output : 4

以下示例程序旨在说明PHP中的gmp_sqrt()函数:

程序1:当数字字符串作为GMP数字作为参数传递时,计算GMP数字平方根的程序。

<?php 
// PHP program to calculate the square root  
// of a GMP number passed as arguments  
  
// strings as GMP numbers  
$num1 = "9"; 
$num2 = "24"; 
  
// calculates the square root of a GMP number 
$squareRoot = gmp_sqrt($num1); 
echo $squareRoot."\n"; 
  
// calculates the square root of a GMP number 
$squareRoot = gmp_sqrt($num2); 
echo $squareRoot."\n"; 
  
?>

输出:

3
4

程序2:将GMP数字作为参数传递时,计算GMP数字平方根的程序。

<?php 
// PHP program to calculate the square root  
// of a GMP number 
  
// creating GMP numbers using gmp_init() 
$num1 = gmp_init(9, 10); 
$num2 = gmp_init(24, 10); 
  
// calculates the square root of a GMP number 
$squareRoot = gmp_sqrt($num1); 
echo $squareRoot."\n"; 
  
// calculates the square root of a GMP number 
$squareRoot = gmp_sqrt($num2); 
echo $squareRoot."\n"; 
  
?>

输出:

3
4

参考:
http://php.net/manual/en/function.gmp-sqrt.php



相关用法


注:本文由纯净天空筛选整理自barykrg大神的英文原创作品 PHP | gmp_sqrt() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。