Monday, September 15, 2025
HomeLanguagesPHP | gmp_and() Function

PHP | gmp_and() Function

The gmp_and() is an inbuilt function in PHP which is used to calculate the bitwise AND of two GMP numbers(GNU Multiple Precision : For large numbers).

Syntax:

gmp_and($num1, $num2)

Parameters: This function accepts two GMP numbers, $num1, $num2 as mandatory parameters as shown in the above syntax. These parameters can be GMP objects in PHP version 5.6 and later, or we are also allowed to pass numeric strings such that it is possible to convert those strings to numbers.

Return Value: This function returns a GMP number which is bitwise AND of GMP numbers passed to it as parameters.

Examples:

Input : gmp_and("4", "2")
Output : 0

Input : gmp_and("9", "10")
Output : 8

Below programs illustrate the gmp_and() function in PHP:

Program 1: Program to calculate the bitwise AND of GMP numbers when numeric strings as GMP numbers are passed as arguments.




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


Output:

8

Program 2: Program to calculate the bitwise AND of GMP numbers when GMP numbers are passed as arguments.




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


Output:

0

Reference:
http://php.net/manual/en/function.gmp-and.php

Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, neveropen Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!
RELATED ARTICLES

Most Popular

Dominic
32288 POSTS0 COMMENTS
Milvus
84 POSTS0 COMMENTS
Nango Kala
6654 POSTS0 COMMENTS
Nicole Veronica
11823 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11887 POSTS0 COMMENTS
Shaida Kate Naidoo
6770 POSTS0 COMMENTS
Ted Musemwa
7039 POSTS0 COMMENTS
Thapelo Manthata
6726 POSTS0 COMMENTS
Umr Jansen
6735 POSTS0 COMMENTS