gmp_intval

(PHP 4 >= 4.0.4, PHP 5, PHP 7)

gmp_intvalConvert GMP number to integer

설명

int gmp_intval ( GMP $gmpnumber )

This function converts GMP number into native PHP integers.

인수

gmpnumber

PHP 5.5 이전에서 GMP 수 resource나, PHP 5.6 이후에서 GMP 객체, 또는 수로 변환할 수 있는 문자열일 수 있습니다.

반환값

The integer value of gmpnumber.

예제

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";
?>

위 예제의 출력:

2147483647
2147483647
2147483648

주의

Warning

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().

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top