Open In App

PHP | gmp_and() Function

Improve
Improve
Like Article
Like
Save
Share
Report

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



Last Updated : 15 Apr, 2018
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads