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 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 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