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


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