gmp_cmp()是PHP中的一个内置函数,用于比较两个GMP编号(GNU多重精度:用于大数)。
用法:
gmp_cmp($num1, $num2)
参数:该函数接受两个GMP数字$num1和$num2作为强制参数,如上面的语法所示,用于比较。这些参数可以是PHP 5.6和更高版本中的GMP对象,或者也允许我们传递数字字符串,以便可以将这些字符串转换为数字。
返回值:如果$num1> $num2,该函数返回“1”;如果$num1等于$num2,则返回“0”;如果$num1,则返回“-1”
例子:
Input : gmp_cmp("1234", "1236") Output : -1 Input : gmp_cmp("3569", "3569") Output : 0
以下示例程序旨在说明PHP中的gmp_cmp()函数:
程序1:程序将两个GMP数字作为数字字符串传递时进行比较。
<?php
// PHP program to compare two
// GMP numbers passed as arguments
// strings as GMP numbers
$num1 = "12356";
$num2 = "12356";
// compares the two numbers and
// gives the result "0" as both are equal
$res = gmp_cmp($num1, $num2);
echo $res;
?>
输出:
0
程序2:程序将两个GMP编号作为GMP编号作为参数传递时进行比较。
<?php
// PHP program to compare two
// GMP numbers passed as arguments
// creating GMP numbers using gmp_init()
$num1 = gmp_init(12355);
$num2 = gmp_init(12356);
// compares these two numbers and
// gives the result "-1" as $num1 < $num2
$res = gmp_cmp($num1, $num2);
echo $res;
?>
输出:
-1
参考:
http://php.net/manual/en/function.gmp-cmp.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()用法及代码示例
注:本文由纯净天空筛选整理自akash1295大神的英文原创作品 PHP | gmp_cmp() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。