Php/docs/function.gmp-sub

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

gmp_sub

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

gmp_subSubtract numbers


说明

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

Subtracts b from a and returns the result.


参数

a

The number being subtracted from.

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

b

The number subtracted from a.

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


返回值

GMP 对象。


范例

Example #1 gmp_sub() example

<?php$sub = gmp_sub("281474976710656", "4294967296"); // 2^48 - 2^32echo gmp_strval($sub) . "\n";?>

以上例程会输出:


281470681743360