gmp_divexact()是PHP中的內置函數,用於檢查GMP編號(GNU倍數精度:用於大數)是否可以被另一個GMP編號完全除盡。如果發生這種情況,則函數將返回準確的結果,否則將返回其他任何不相關的GMP編號。
用法:
gmp_divexact($num, $divisor)
參數:此函數接受兩個GMP編號$num1,$num2作為強製參數,如上麵的語法所示。這些參數可以是PHP 5.6及更高版本中的GMP對象,或者也可以傳遞數字字符串,以便可以將這些字符串轉換為數字。
返回值:該函數使用快速除法算法,並檢查除法是否可行,從而將除法結果作為GMP編號返回。
例子:
Input : gmp_divexact("15", "5") Output : 3 Input : gmp_divexact("13", "3") Output : 12297829382473034415
以下示例程序旨在說明PHP中的gmp_divexact()函數:
程序1:將數字字符串作為GMP數字作為參數傳遞時,對GMP數字執行“exact division”算法的程序。
<?php
// PHP program to perform "exact division" of
// GMP numbers passed as arguments
// strings as GMP numbers
$num = "12";
$divisor = "3";
// calculate the correct result
// if division possible
$res = gmp_divexact($num, $divisor);
echo $res;
?>
輸出:
4
程序2:將GMP數字作為參數傳遞時,對GMP數字執行“exact division”算法的程序。
<?php
// PHP program to perform "exact division" of
// GMP numbers passed as arguments
// creating GMP numbers using gmp_init()
$num = gmp_init(15);
$divisor = gmp_init(5);
// calculate the correct result
// if division is possible
$res = gmp_divexact($num, $divisor);
echo $res;
?>
輸出:
3
程序3:將GMP數字作為參數傳遞時,對GMP數字執行“exact division”算法的程序。
<?php
// PHP program to perform "exact division" of
// GMP numbers passed as arguments
// creating GMP numbers using gmp_init()
$num = gmp_init(15);
$divisor = gmp_init(7);
// calculate the correct result
// if division is possible
$res = gmp_divexact($num, $divisor);
echo $res;
?>
輸出:
7905747460161236409
參考:
http://php.net/manual/en/function.gmp-divexact.php
相關用法
- PHP next()用法及代碼示例
- PHP pow( )用法及代碼示例
- PHP pi( )用法及代碼示例
- PHP Ds\Map get()用法及代碼示例
- PHP Ds\Map put()用法及代碼示例
- PHP Ds\Set xor()用法及代碼示例
- PHP each()用法及代碼示例
- PHP cos( )用法及代碼示例
- PHP tan( )用法及代碼示例
- PHP sin( )用法及代碼示例
- PHP abs()用法及代碼示例
- PHP each()用法及代碼示例
- PHP Ds\Set get()用法及代碼示例
注:本文由純淨天空篩選整理自akash1295大神的英文原創作品 PHP | gmp_divexact() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。