Example 1. gmp_intval() 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";
 ?>
 | 
      The printout of the above program will be:
     
| 2147483647
2147483647
2147483648 |