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


PHP gmp_popcount()用法及代碼示例


gmp_popcount()是PHP中的內置函數,用於查找GMP編號的填充計數(GNU Multiple Precision:用於大數)。我們也可以說該函數用於查找GMP編號的二進製表示形式中的設置位數。

用法:

gmp_popcount ( $num )

參數:此函數接受GMP數字$num作為強製參數,如上麵的語法所示。此參數可以是PHP 5.6和更高版本中的GMP對象,或者也可以傳遞數字字符串,隻要可以將該字符串轉換為數字即可。


返回值:此函數返回一個整數,該整數是作為參數傳遞給它的GMP編號的填充計數或設置位數(以二進製表示)。

例子:

Input:"9"
Output:2

Input:"25"
Output:3

以下示例程序旨在說明PHP中的gmp_popcount()函數:

程序1:程序將數字字符串作為GMP數字作為參數傳遞時,計算數字的填充計數。

<?php 
// PHP program to calculate population count  
// of a GMP number passed as arguments  
  
// strings as GMP numbers  
$num1 = "9"; 
$num2 = "25"; 
  
// calculates the population count of a number 
$pcount = gmp_popcount($num1); 
echo $pcount."\n"; 
  
// calculates the population count of a number 
$pcount = gmp_popcount($num2); 
echo $pcount."\n"; 
  
?>

輸出:

2
3

程序2:當GMP數字作為參數傳遞時,用於計算數字的人口計數的程序。

<?php 
// PHP program to calculate population count  
// of a GMP number passed as arguments  
  
// creating GMP numbers using gmp_init() 
$num1 = gmp_init(9, 10); 
$num2 = gmp_init(25, 10); 
  
// calculates the population count of a number 
$pcount = gmp_popcount($num1); 
echo $pcount."\n"; 
  
// calculates the population count of a number 
$pcount = gmp_popcount($num2); 
echo $pcount."\n"; 
  
?>

輸出:

2
3

參考:
http://php.net/manual/en/function.gmp-popcount.php



相關用法


注:本文由純淨天空篩選整理自barykrg大神的英文原創作品 PHP | gmp_popcount() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。