gmp_neg()函数是PHP中的内置函数,它返回GMP编号的负数(GNU多精度)。
用法:
gmp_neg( $num )
参数:该函数仅接受一个强制参数$num,该参数可以是PHP 5.5中的GMP数字资源或PHP 5.6及更高版本中的GMP对象,或者可以将数字字符串传递给该函数,前提是可以将这些字符串转换为数字。
返回值:此函数返回一个GMP编号(在PHP 5.5和更低版本中)或一个GMP对象(在PHP 5.6和更高版本中),该对象的值与$num的值相反。
例子:
Input : $num = 255 Output : -255 Input : $num = 128 Output : -128
下面的程序将说明gmp_neg()函数:
程序1::
<?php
//PHP program to illustrate
//gmp_neg() function
$num = gmp_init("255");
$num1 = gmp_neg($num);
echo gmp_strval($num1);
?>
输出:
-255
程序2::
<?php
//PHP program to illustrate
//gmp_neg() function
$num = gmp_init("314567128");
$num1 = gmp_neg($num);
echo gmp_strval($num1);
?>
输出:
-314567128
参考:http://php.net/manual/en/function.gmp-neg.php
相关用法
- p5.js sq()用法及代码示例
- d3.js d3.map.has()用法及代码示例
- PHP next()用法及代码示例
- p5.js day()用法及代码示例
- p5.js pow()用法及代码示例
- CSS var()用法及代码示例
- d3.js d3.map.set()用法及代码示例
- PHP pow( )用法及代码示例
- PHP pi( )用法及代码示例
- PHP Ds\Map get()用法及代码示例
- PHP Ds\Map put()用法及代码示例
- p5.js str()用法及代码示例
注:本文由纯净天空筛选整理自RICHIK BHATTACHARJEE大神的英文原创作品 PHP | gmp_neg() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。