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


PHP gmp_div_qr()用法及代碼示例



gmp_div_qr()函數是PHP中的內置函數,該函數執行兩個GMP數字之間的除法運算(GNU多重精度:用於大數),並返回商和餘數。
用法:

gmp_div_qr($num1, $num2)

參數:此函數接受兩個GMP編號$num1和$num2作為強製參數,如上麵的語法所示。這些參數可以是PHP 5.6和更高版本中的GMP對象,或者可以將數字字符串傳遞給函數,前提是可以將這些字符串轉換為數字。

返回值:此函數返回包含兩個成分的數組:


  • 首先是除法的商。
  • 第二是除法的其餘部分。

例子:

Input : $num1 = 146, $num2  = 12
Output : Quotient = 12, Remainder = 2
          Array ( [0] => GMP Object ( [num] => 12 ) [1] => GMP Object ( [num] => 2 ) )

Input : $num1 = 189126457831, $num2  = 12098123409
Output : Quotient = 15, Remainder = 7654606696
          Array ( [0] => GMP Object ( [num] => 15) [1] => GMP Object ( [num] => 7654606696 ) )

下麵的程序將說明gmp_div_qr()函數的用法。

程序1:當GMP數字作為參數傳遞時執行GMP數字除法的程序。

<?php 
// PHP program to perform the division of 
// GMP numbers 
   
// creating GMP numbers using gmp_init() 
$num1 = gmp_init(257); 
$num2 = gmp_init(17); 
  
// calculates the quotient and remainder 
//  when $num1 is divided by num2 
  
$res = gmp_div_qr($num1, $num2); 
// Printing the Array elements, i.e. 
// the quotient and remainder 
print_r($res); 
?>

輸出

Array 
( 
[0] => GMP Object ( [num] => 15 ) 
[1] => GMP Object ( [num] => 2 ) 
)

程序2:將數字字符串作為GMP數字作為參數傳遞時執行GMP數字除法的程序。

<?php 
// PHP program to perform the division of 
// GMP numbers 
   
// creating GMP number using gmp_init( 
$a = gmp_init("7891267541121"); 
  
// calculates the quotient when 
// $a is divided by 115789034 
$res = gmp_div_qr($a, "115789034"); 
  
// Printing the Array elements, i.e. 
// the quotient and remainder 
print_r($res); 
?>

輸出

Array ( 
[0] => GMP Object ( [num] => 68152 ) 
[1] => GMP Object ( [num] => 13295953 ) 
)

參考:http://php.net/manual/zh/function.gmp-div-qr.php



相關用法


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