gmp_intval
gmp_intval
Convert GMP number to integer
int **gmp_intval** $num
This function converts GMP number into native PHP s.
int
num
The value of .
int``num
Voorbeeld: example
<?php
// displays correct result
echo gmp_intval("2147483647") . "\n";
// displays wrong result, above PHP integer limit
echo gmp_intval("2147483648") . "\n";
// displays correct result
echo gmp_strval("2147483648") . "\n";
?>
2147483647
2147483647
2147483648
Waarschuwing: > This function returns a useful result only if the number actually fits the PHP integer (i.e., signed long type). To simply print the GMP number, use .
gmp_strval