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


PHP gmp_jacobi()用法及代碼示例


gmp_jacobi()函數是PHP中的一個內置函數,該函數計算兩個GMP數字(GNU多精度:對於大數)的Jacobi符號,並將$num1和$num2作為參數傳遞給該函數並將其返回。 $num2必須為正數和奇數。

用法:

gmp_jacobi($num1, $num2)

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


返回值:
此函數返回一個GMP數字(在PHP 5.5及更低版本中)或一個GMP對象(在PHP 5.6及更高版本中),即數字的雅可比。

例子:

Input : $num1 = 2, $num2 = 3
Output : -1

Input : $num1 = 6, $num2 = 15
Output : 0

下麵的程序將說明gmp_jacobi()函數:

程序1:

<?php 
// PHP program to calculate the 
// jacobi of two GMP numbers 
$num1 = 13; 
$num2 = 9907; 
  
// Display the result 
echo gmp_jacobi($num1, $num2);  
?>

輸出

1

程序2:

<?php 
// PHP program to calculate the 
// jacobi of two GMP numbers 
  
// creating GMP numbers using gmp_init() 
$num1 = gmp_init("124567812"); 
$num2 = gmp_init("271290907"); 
  
//Display the result 
echo gmp_jacobi($num1, $num2);  
?>

輸出

-1

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



相關用法


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