gmp_intval()是PHP中的内置函数,可将GMP编号转换为整数。这里的GMP是指GNU Multiple Precision,它适用于大量数字。
用法:
int gmp_intval ( $num )
参数:该函数接受单个参数$num(它是GMP编号)并返回其整数值。此参数可以是PHP 5.6和更高版本中的GMP对象,或者也可以传递数字字符串,只要可以将该字符串转换为数字即可。
返回值:该函数返回给定GMP编号$num的整数值
例子:
Input : $num = "2147483647" Output : 2147483647 Input : $num = "12" Output : 12
注意:如果将数字字符串作为整数传递,则它将返回相同的整数(超出PHP整数限制)。但是,如果传递了GMP编号,它将返回GMP编号的整数值。
以下示例程序旨在说明gmp_intval()函数的用法:
程序1:下面的程序演示了将数字字符串作为参数传递时gmp_intval()函数的工作。
<?php
// PHP program to demonstrate the gmp_intval()
// function when argument is passed
$x = gmp_intval("2147") . "\n";
// prints integer value of a gmp number
// it returns the same numeric string in integer form
echo gmp_strval($x) . "\n";
?>
输出:
2147
程序2:下面的程序演示了将GMP编号作为参数传递时gmp_intval()的工作。
<?php
// PHP program to demonstrate the gmp_intval() function
// when GMP number is passed as an argument
// arguments as GMP numbers
$num = gmp_init("1111", 2); // num initialisation = 12
// integer vaulue of GMP number 12 is 12
$x = gmp_intval($num);
// prints the integer value of a gmp number
// gmp_strval converts GMP number to string
// representation in given base(default 10).
echo gmp_strval($x) . "\n";
?>
输出:
7
参考:
http://php.net/manual/en/function.gmp-intval.php
相关用法
- p5.js nfc()用法及代码示例
- p5.js nfp()用法及代码示例
- d3.js d3.hcl()用法及代码示例
- p5.js nfs()用法及代码示例
- PHP cos( )用法及代码示例
- PHP sin( )用法及代码示例
- p5.js nf()用法及代码示例
- PHP tan( )用法及代码示例
- PHP pow( )用法及代码示例
- d3.js d3.map.set()用法及代码示例
- d3.js d3.set.has()用法及代码示例
- PHP Ds\Set xor()用法及代码示例
注:本文由纯净天空筛选整理自Twinkl Bajaj大神的英文原创作品 PHP | gmp_intval() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。