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


PHP gmp_com()用法及代码示例


gmp_com()是PHP中的内置函数,用于计算GMP数的补码(GNU多重精度:用于大数)。

用法:

gmp_com($num)

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


返回值:此函数返回一个GMP编号,该编号是作为参数传递给它的GMP编号的补码。

例子:

Input : gmp_com("1235")
Output : -1236

Input : gmp_com("1234")
Output : -1235

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

程序1:将数字字符串作为GMP数字作为参数传递时,计算GMP数字的补码的程序。

<?php 
// PHP program to calculate the one's complement 
// of a GMP number passed as arguments  
  
// strings as GMP numbers  
$num = "1345"; 
  
// calculate the one's complement of a GMP number 
$res = gmp_com($num); 
  
echo $res; 
  
?>

输出:

-1346

程序2:将GMP编号作为参数传递时,计算GMP编号的补码的程序。

<?php 
// PHP program to calculate the one's complement 
// of a GMP number passed as arguments  
  
// creating GMP numbers using gmp_init() 
$num = gmp_init(132); 
  
// calculate the one's complement of a GMP number 
$res = gmp_com($num); 
  
echo $res; 
  
?>

输出:

-133

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



相关用法


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