gmp_sign()是PHP中的内置函数,用于检查给定GMP编号的符号(GNU多重精度:用于大数)。
用法:
gmp_sign($num)
参数:此函数接受一个GMP数字$num作为上述语法中所示的强制参数。此参数可以是PHP 5.6和更高版本中的GMP对象,或者也可以传递数字字符串,只要可以将该字符串转换为数字即可。
返回值:该函数检查给定数字$num的符号,并根据数字返回三个值,如下所述:
- 返回1-$num为正数
- 返回-1-$num为负数
- 返回0-$num为零
例子:
Input : $num=9 Output : 1 Input : $num=-8 Output : -1 Input : $num=0 Output : 0
以下示例程序旨在说明gmp_sign()函数:
程序1:下面的程序演示了当GMP数字作为参数传递时gmp_sign()函数的工作。
<?php
// PHP program to check the sign
// of a number
// GMP arguments
// negative
$num1 = gmp_init("-101", 2);
// positive
$num2 = gmp_init("1010", 2);
// zero
$num3 = gmp_init("0", 2);
// prints -1 as negative
echo gmp_sign($num1)."\n";
// prints +1 as negative
echo gmp_sign($num2)."\n";
// prints 0 as 0
echo gmp_sign($num3)."\n";
?>
输出:
-1 1 0
程序2:下面的程序演示了将数字字符串作为参数传递时gmp_sign()的工作。
<?php
// PHP program to check the sign
// of a number
// numeric arguments
// negative
$num1 = -9;
// positive
$num2 = 8;
// zero
$num3 = 0;
// prints -1 as negative
echo gmp_sign($num1)."\n";
// prints +1 as negative
echo gmp_sign($num2)."\n";
// prints 0 as 0
echo gmp_sign($num3)."\n";
?>
输出:
-1 1 0
参考:
http://php.net/manual/en/function.gmp-sign.php
相关用法
- PHP pi( )用法及代码示例
- p5.js second()用法及代码示例
- PHP Ds\Map get()用法及代码示例
- p5.js value()用法及代码示例
- p5.js str()用法及代码示例
- PHP Ds\Map put()用法及代码示例
- p5.js int()用法及代码示例
- p5.js max()用法及代码示例
- PHP tan( )用法及代码示例
- CSS hsl()用法及代码示例
- d3.js d3.max()用法及代码示例
- p5.js nfp()用法及代码示例
注:本文由纯净天空筛选整理自ChetnaAgarwal大神的英文原创作品 PHP | gmp_sign() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。