|
PHP5中文手册
gmp_intval(PHP 4 >= 4.0.4, PHP 5) gmp_intval — Convert GMP number to integer 说明
int gmp_intval
( resource $gmpnumber
)
This function allows to convert GMP number to integer. 参数
返回值An integer value of gmpnumber . 范例
Example#1 gmp_intval() example
<?php 上例将输出:
注释Warning
This function returns a useful result only if the number actually fits the PHP integer (i.e., signed long type). If you want just to print the GMP number, use gmp_strval(). |