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


PHP gmp_or()用法及代码示例


gmp_or()是PHP中的一个内置函数,用于计算两个GMP数字的按位“或”(GNU Multiple Precision:适用于大数)。

用法:

gmp_or($num1, $num2)

参数:此函数接受两个GMP编号$num1,$num2作为强制参数,如上面的语法所示。这些参数可以是PHP 5.6及更高版本中的GMP对象,或者也可以传递数字字符串,以便可以将这些字符串转换为数字。


返回值:此函数返回一个GMP编号,该编号是作为参数传递给它的GMP编号的按位或。

例子:

Input : gmp_or("4", "2")
Output : 6

Input : gmp_or("9", "10")
Output : 11

以下示例程序旨在说明PHP中的gmp_or()函数:

程序1:程序将数字字符串作为GMP数字作为参数传递时,计算GMP数字的按位或。

<?php 
// PHP program to calculate the bitwise OR 
//  GMP numbers passed as arguments  
  
// strings as GMP numbers  
$num1 = "10"; 
$num2 = "9"; 
  
// calculate the bitwise OR of $num1 and $num2 
$res = gmp_or($num1, $num2); 
  
echo $res; 
  
?>

输出:

11

程序2:当GMP数字作为参数传递时,计算GMP数字的按位或的程序。

<?php 
// PHP program to calculate the bitwise OR 
//  GMP numbers passed as arguments  
  
// creating GMP numbers using gmp_init() 
$num1 = gmp_init(4); 
$num2 = gmp_init(2); 
  
// calculate the bitwise OR of $num1 and $num2 
$res = gmp_or($num1, $num2); 
  
echo $res; 
  
?>

输出:

6

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



相关用法


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