(PHP 4 >= 4.0.4, PHP 5, PHP 7, PHP 8)
gmp_or — 按位或
$num1
$num2
计算两个 GMP 数的按位或。
num1
一个 GMP 对象,一个 int 或一个数值 string。
num2
一个 GMP 对象。
示例 #1 gmp_or() 示例
<?php$or1 = gmp_or("0xfffffff2", "4");echo gmp_strval($or1, 16) . "\n";$or2 = gmp_or("0xfffffff2", "2");echo gmp_strval($or2, 16) . "\n";?>
以上示例将输出
fffffff6 fffffff2