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


PHP gmp_pow()用法及代碼示例


gmp_pow()是PHP中的內置函數,用於計算提高到GMP數字和整數的冪(GNU多精度:適用於大數)。

用法:

gmp_pow( $base, $exp )

參數:該函數接受兩個強製性參數$base和$exp。


  1. $base-它是基數。此參數可以是PHP 5.6和更高版本中的GMP對象,或者也可以傳遞數字字符串,隻要可以將該字符串轉換為數字即可。
  2. $exp-它是提升到基礎的力量

返回值:此函數返回一個正的GMP編號,它等於$base$exp
例子:

Input : $base = "2" $exp = 2
Output : 4

Input : $base = "0" $exp = 0
Output : 1 

以下示例程序旨在說明gmp_pow()函數:

程序1:下麵的程序演示了當GMP數字作為參數傳遞時gmp_pow()函數的工作。

<?php 
// PHP program to calculate power raised  
// to a number  
  
// GMP number as argument  
$base = gmp_init("100", 2); 
$exp = 2;  
  
// function calculates the pow raised to  
// number   
$pow = gmp_pow($base, $exp);  // 4^2  
  
// gmp_strval Convert GMP number to string  
// representation in given base(default 10). 
echo gmp_strval($pow, 2) . "\n"; 
?>

輸出:

10000

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

<?php 
// PHP program to calculate power raised  
// to a number  
  
// numeric string as argument 
$base = "4"; 
$exp = 2;  
  
// function calculates the pow raised to  
// number  4^2  
$pow = gmp_pow($base, $exp); 
  
echo $pow; 
?>

輸出:

10000

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



相關用法


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