gmp_root()是PHP中的內置函數,該函數返回GMP編號的N-th根的整數部分(GNU多精度:適用於大數)。
用法:
gmp_pow( $num, $n )
參數:該函數接受兩個強製性參數$num和$n。
- $num -這是GMP編號,其n-th根的整數部分被返回。該參數是PHP 5.6和更高版本中的GMP對象,或者也可以傳遞數字字符串,隻要可以將該字符串轉換為數字即可。
- $n -數字的正n-th根。它是一個整數值。
返回值:此函數返回一個正GMP數,它是$num的N-th根的整數部分。
例子:
Input : $num = "20" $n = 2 Output : 4 Input : $num = "9" $n = 2 Output : 2
以下示例程序旨在說明gmp_root()函數:
程序1:下麵的程序演示了當GMP編號作為參數傳遞時gmp_root()函數的工作。
<?php
// PHP program to calculate the
// integer part of N-th root of
// a GMP number
// GMP number as arguments
$num = gmp_init("1001", 2);
$n = 3;
// function calculates the pow raised to
// number modulo mod
// integer part of cubic root of 9
$root = gmp_root($num, $n);
// gmp_strval Convert GMP number to string
// representation in given base(default 10).
echo gmp_strval($root, 2);
?>
輸出:
10
程序2:下麵的程序演示了將數字字符串作為參數傳遞時gmp_root()的工作。
<?php
// PHP program to calculate the
// integer part of N-th root of
// a GMP number
// GMP number as arguments
$num = "9";
$n = 3;
// function calculates the pow raised to
// number modulo mod
// integer part of cubic root of 9
$root = gmp_root($num, $n);
echo $root;
?>
輸出:
2
程序3:程序查找數字平方根的整數部分。
<?php
// PHP program to calculate the
// integer part of N-th root of
// a GMP number
// GMP number as arguments
$num = "25";
$n = 2;
// function calculates the pow raised to
// number modulo mod
// integer part of square root of 25
$root = gmp_root($num, $n);
echo $root;
?>
輸出:
5
參考:
http://php.net/manual/en/function.gmp-root.php
相關用法
- p5.js nfc()用法及代碼示例
- p5.js nfp()用法及代碼示例
- d3.js d3.hcl()用法及代碼示例
- p5.js nfs()用法及代碼示例
- PHP cos( )用法及代碼示例
- PHP sin( )用法及代碼示例
- p5.js nf()用法及代碼示例
- PHP tan( )用法及代碼示例
- PHP pow( )用法及代碼示例
- d3.js d3.map.set()用法及代碼示例
- d3.js d3.set.has()用法及代碼示例
- PHP Ds\Set xor()用法及代碼示例
注:本文由純淨天空篩選整理自ChetnaAgarwal大神的英文原創作品 PHP | gmp_root() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。