gmp_intval

(PHP 4 >= 4.0.4, PHP 5, PHP 7)
Convert GMP number to integer
int gmp_intval ( GMP $gmpnumber )

This function converts GMP number into native PHP integers.

Parameters:
gmpnumber

Either a GMP number resource in PHP 5.5 and earlier, a GMP object in PHP 5.6 and later, or a numeric string provided that it is possible to convert the latter to a number.

Returns:

The integer value of gmpnumber.

Examples:
gmp_intval() example
1
2
3
4
5
6
7
8
9
10
<?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";
?>

The above example will output:

2147483647
2147483647
2147483648
doc_php
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.