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


PHP gmp_sqrt()用法及代碼示例


gmp_sqrt()是PHP中的內置函數,用於計算GMP數的平方根(GNU多精度:適用於大數)。該函數僅返回GMP編號平方根的整數部分。

用法:

gmp_sqrt ( $num )

參數:此函數接受GMP數字$num作為強製參數,如上麵的語法所示。此參數可以是PHP 5.6和更高版本中的GMP對象,或者也可以傳遞數字字符串,隻要可以將該字符串轉換為數字即可。


返回值:此函數返回一個GMP編號,該編號是作為參數傳遞給它的GMP編號的平方根。此函數僅返回作為參數傳遞給它的GMP編號平方根的整數部分。

例子:

Input : "9"
Output : 3

Input : "24"
Output : 4

以下示例程序旨在說明PHP中的gmp_sqrt()函數:

程序1:當數字字符串作為GMP數字作為參數傳遞時,計算GMP數字平方根的程序。

<?php 
// PHP program to calculate the square root  
// of a GMP number passed as arguments  
  
// strings as GMP numbers  
$num1 = "9"; 
$num2 = "24"; 
  
// calculates the square root of a GMP number 
$squareRoot = gmp_sqrt($num1); 
echo $squareRoot."\n"; 
  
// calculates the square root of a GMP number 
$squareRoot = gmp_sqrt($num2); 
echo $squareRoot."\n"; 
  
?>

輸出:

3
4

程序2:將GMP數字作為參數傳遞時,計算GMP數字平方根的程序。

<?php 
// PHP program to calculate the square root  
// of a GMP number 
  
// creating GMP numbers using gmp_init() 
$num1 = gmp_init(9, 10); 
$num2 = gmp_init(24, 10); 
  
// calculates the square root of a GMP number 
$squareRoot = gmp_sqrt($num1); 
echo $squareRoot."\n"; 
  
// calculates the square root of a GMP number 
$squareRoot = gmp_sqrt($num2); 
echo $squareRoot."\n"; 
  
?>

輸出:

3
4

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



相關用法


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