The gmp_add() is a built-in function in PHP which is used to add two GMP numbers (GNU Multiple Precision : For large numbers).
Syntax :
php
Output:
php
Output:
gmp_add ( $num1, $num2 )Parameters: This function accepts two GMP numbers as mandatory parameters as shown in the above syntax. These can be a GMP object in PHP version 5.6 and later, or a numeric string provided that it is possible to convert the latter to a number. This function adds these two numbers and returns it. Return Value: This function returns a GMP number which is sum of the two numbers passed as parameter. Examples:
Input : "123456789", "987654321" Output : 1111111110 Input : "5628179032615", "7136454221086" Output : 12764633253701Below programs illustrate the gmp_add() function in PHP : Program 1 :
<?php
$sum = gmp_add("5628179032615", "7136454221086");
echo gmp_strval($sum);
?>
</div>
12764633253701Program 2:
<?php
$sum = gmp_add("123456789", "987654321");
echo gmp_strval($sum);
?>
1111111110Reference: https://www.php.net/manual/en/function.gmp-add.php