gmp_and
Description
Syntax
gmp_and( GMP|int|string $num1, GMP|int|string $num2 ): GMP
Parameters
num1
A GMP object, an int or a numeric string.
num2
A GMP object, an int or a numeric string.
Return
Returns a GMP number representing the bitwise AND comparison.
Examples
1 · num1 num2 · GMP
<? $num1 = 0b100; $num2 = 0b110; $num1 = gmp_init($num1); $num2 = gmp_init($num2); $return = gmp_and($num1, $num2); var_dump($return); $num = $return; $base = 2; $gmp_strval = gmp_strval($num, $base); echo $gmp_strval;
object(GMP)#3 (1) { ["num"]=> string(1) "4" } 100
2 · num1 num2 · int
<? $num1 = 0b100; $num2 = 0b110; $return = gmp_and($num1, $num2); var_dump($return); $num = $return; $base = 2; $gmp_strval = gmp_strval($num, $base); echo $gmp_strval;
object(GMP)#1 (1) { ["num"]=> string(1) "4" } 100
3 · num1 num2 · string
<? $num1 = "0b100"; $num2 = "0b110"; $return = gmp_and($num1, $num2); var_dump($return); $num = $return; $base = 2; $gmp_strval = gmp_strval($num, $base); echo $gmp_strval;
<!doctype html> <html> <head> <title>PHP</title> <style> html, a { background-color: rgb(255 0 255 / 0.1); } a { color: purple; transition-duration: 1s; &:hover { background-color: rgb(0 0 0 / 0.1); color: black; text-decoration-color: transparent; } } </style> </head> <body> <a href="/php/">PHP</a> <script> function myfunction(myparameter) { const mytarget = myparameter.target; const mystyle = mytarget.style; mystyle.position = "absolute"; mystyle.left = `${Math.random() * (window.innerWidth - mytarget.offsetWidth)}px`; mystyle.top = `${Math.random() * (window.innerHeight - mytarget.offsetHeight)}px`; } document.querySelector("a").addEventListener("mouseout", myfunction); </script> </body> </html>
Links
Related
GMP
- gmp_abs
- gmp_add
- gmp_binomial
- gmp_clrbit
- gmp_cmp
- gmp_com
- gmp_div
- gmp_div_q
- gmp_div_qr
- gmp_div_r
- gmp_divexact
- gmp_export
- gmp_fact
- gmp_gcd
- gmp_gcdext
- gmp_hamdist
- gmp_import
- gmp_init
- gmp_intval
- gmp_invert
- gmp_jacobi
- gmp_kronecker
- gmp_lcm
- gmp_legendre
- gmp_mod
- gmp_mul
- gmp_neg
- gmp_nextprime
- gmp_or
- gmp_perfect_power
- gmp_perfect_square
- gmp_popcount
- gmp_pow
- gmp_powm
- gmp_prob_prime
- gmp_random_bits
- gmp_random_range
- gmp_random_seed
- gmp_root
- gmp_rootrem
- gmp_scan0
- gmp_scan1
- gmp_setbit
- gmp_sign
- gmp_sqrt
- gmp_sqrtrem
- gmp_strval
- gmp_sub
- gmp_testbit
- gmp_xor