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


PHP gmp_testbit()用法及代码示例


gmp_testbit()是PHP中的内置函数,它检查是否设置了给定GMP编号(GNU倍数精度:用于大数)的指定位。

用法:

gmp_testbit($num, $index)

参数:该函数接受两个必需参数,如下所述:


  1. $num -此函数接受一个要检查其指定位的GMP编号$num。此参数可以是PHP 5.6及更高版本中的GMP对象,或者也可以传递数字字符串,前提是可以转换该字符串到一个数字。
  2. $index- 指定的索引,其$num中的位将被检查。它是整数。

返回值:如果设置了指定的$index位,则该函数返回true;否则,如果未设置该位,则返回false。

例子:

Input : $num=4 $index=2
Output :  true

Input : $num=9 $index=2
Output :  false

以下示例程序旨在说明gmp_testbit()函数的用法:

程序1:下面的程序演示了当GMP数字作为参数传递时gmp_testbit()函数的工作。

<?php 
// PHP program to check the sign  
// of a number  
  
// numeric string arguments  
$num = gmp_init("1001", 2); 
$index1 = 2;  
$index2 = 0;  
  
// checks if the 2nd index bit in 9 (1001) is set or not 
var_dump(gmp_testbit($num, $index1))."\n";   
  
// checks if the 0th index bit in 9 (1001) is set or not 
var_dump(gmp_testbit($num, $index2));   
?>

输出:

bool(false) 
bool(true)

程序2:下面的程序演示了将数字字符串作为参数传递时gmp_testbit()的工作。

<?php 
// PHP program to check the sign  
// of a number  
  
// numeric string arguments  
$num = "9"; 
$index1 = 2;  
$index2 = 3;  
  
// checks if the 2nd index bit in 9 (1001)  
// is set or not 
var_dump(gmp_testbit($num, $index1))."\n";   
  
// checks if the 3rd index bit in 9 (1001)  
// is set or not 
var_dump(gmp_testbit($num, $index2));   
?>

输出:

bool(false) 
bool(true)

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



相关用法


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