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


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。