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


PHP gmp_sqrtrem()用法及代码示例


gmp_sqrtrem()是PHP中的内置函数,用于计算GMP数(GNU倍数精度:对于大数)的平方根和余数。此函数还仅返回GMP编号平方根中的整数部分作为gmp_sqrt()函数。其余部分本质上是GMP编号与该函数返回的平方根值的平方之间的差。

用法:

gmp_sqrtrem ( $num )

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


返回值:此函数返回两个GMP编号的数组。此数组中的第一个元素是传递给函数的GMP编号平方根的整数部分,第二个元素是余数。余数计算为GMP编号与该数组第一个元素的平方之间的差。

例子:

Input : "9"
Output : 3

Input : "24"
Output : 4

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

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

<?php 
// PHP program to calculate the square root  
// of a GMP number 
  
// passing numeric strings as GMP numbers 
$num = gmp_init("24"); 
  
// calculates the square root of a GMP number 
// with remainder 
list($squareRoot, $rem) = gmp_sqrtrem($num); 
  
echo $squareRoot." ".$rem; 
  
?>

输出:

4 8

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

<?php 
// PHP program to calculate the square root  
// of a GMP number 
  
// creating GMP numbers using gmp_init() 
$num = gmp_init(24, 10); 
  
// calculates the square root of a GMP number 
// with remainder 
list($squareRoot, $rem) = gmp_sqrtrem($num); 
  
echo $squareRoot." ".$rem; 
  
?>

输出:

4 8

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



相关用法


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