當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


PHP gmp_intval()用法及代碼示例


gmp_intval()是PHP中的內置函數,可將GMP編號轉換為整數。這裏的GMP是指GNU Multiple Precision,它適用於大量數字。

用法:

int gmp_intval ( $num )

參數:該函數接受單個參數$num(它是GMP編號)並返回其整數值。此參數可以是PHP 5.6和更高版本中的GMP對象,或者也可以傳遞數字字符串,隻要可以將該字符串轉換為數字即可。


返回值:該函數返回給定GMP編號$num的整數值

例子:

Input : $num = "2147483647"
Output :  2147483647

Input : $num = "12"
Output :  12

注意:如果將數字字符串作為整數傳遞,則它將返回相同的整數(超出PHP整數限製)。但是,如果傳遞了GMP編號,它將返回GMP編號的整數值。

以下示例程序旨在說明gmp_intval()函數的用法:

程序1:下麵的程序演示了將數字字符串作為參數傳遞時gmp_intval()函數的工作。

<?php 
// PHP program to demonstrate the gmp_intval() 
// function when argument is passed  
  
$x = gmp_intval("2147") . "\n"; 
  
// prints integer value of a gmp number  
  
// it returns the same numeric string in integer form  
echo gmp_strval($x) . "\n";  
?> 

輸出:

2147

程序2:下麵的程序演示了將GMP編號作為參數傳遞時gmp_intval()的工作。

<?php 
// PHP program to demonstrate the gmp_intval() function 
// when GMP number is passed as an argument 
   
// arguments as GMP numbers 
$num = gmp_init("1111", 2); // num initialisation = 12  
   
// integer vaulue of GMP number 12 is 12 
$x = gmp_intval($num);  
   
// prints the integer value of a gmp number 
// gmp_strval converts GMP number to string  
// representation in given base(default 10). 
echo gmp_strval($x) . "\n";  
?>

輸出:

7

參考:
http://php.net/manual/en/function.gmp-intval.php



相關用法


注:本文由純淨天空篩選整理自Twinkl Bajaj大神的英文原創作品 PHP | gmp_intval() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。