Php/docs/function.gmp-add

来自菜鸟教程
跳转至:导航、​搜索

gmp_add

(PHP 4 >= 4.0.4, PHP 5, PHP 7)

gmp_addAdd numbers


说明

gmp_add ( GMP $a , GMP $b ) : GMP

Add two numbers.


参数

a

The first summand (augent).

PHP 5.5 之前为 GMP 数值资源,PHP 5.6 之后为 GMP 对象或数字,或可以转为数字的字符串。

b

The second summand (addend).

PHP 5.5 之前为 GMP 数值资源,PHP 5.6 之后为 GMP 对象或数字,或可以转为数字的字符串。


返回值

A GMP number representing the sum of the arguments.


范例

Example #1 gmp_add() example

<?php$sum = gmp_add("123456789012345", "76543210987655");echo gmp_strval($sum) . "\n";?>

以上例程会输出:


200000000000000