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, zambiatek 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

Leave a Reply

Your email address will not be published. Required fields are marked *

Check Also
Close
Back to top button