當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。