php的帮助文档,涉及到PHP的案例和基本语法,以及实际应用内容

源代码在线查看: function.gmp-intval.html

软件大小: 3633 K
上传用户: fengkuangyidao
关键词: php PHP 文档 实际应用
下载地址: 免注册下载 普通下载 VIP

相关代码

												 				  Convert GMP number to integer				  				 				 				 gmp_init				 gmp_invert				 GMP Functions				 PHP Manual								 				  gmp_intval				  (PHP 4 >= 4.0.4, PHP 5)gmp_intval — Convert GMP number to integer								 				 				 				  Description				  				   int gmp_intval				   ( resource $gmpnumber				   )								  				   This function allows to convert GMP number to integer.				  				 												 				  Parameters				  				   								    								     gmpnumber												     								      				       A GMP number.				      				     								    								   								  				 												 				  Return Values				  				   An integer value of gmpnumber				.				  				 												 				  Examples				  				   				    Example #1 gmp_intval() example				    								<?php// displays correct resultecho gmp_intval("2147483647") . "\n";// displays wrong result, above PHP integer limitecho gmp_intval("2147483648") . "\n";// displays correct resultecho gmp_strval("2147483648") . "\n";?>												    								    The above example will output:				    								2147483647				2147483647				2147483648								    				   				  				 												 				  Notes				  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().				   				  				 																 gmp_init				 gmp_invert				 GMP Functions				 PHP Manual											

相关资源