pow() 是一個 PHP 數學函數。它將第一個數字提高到第二個數字的冪。
用法:
number pow ( number $base , number $exp )
參數 | 描述 | 必需/可選 |
---|---|---|
base | 必需。指定要使用的基數。 | required |
exp | 必需。指定 index 。 | required |
返回值:返回一個數字(浮點數和整數),它等於 $base 的 $exponent 次冪。
例子1
<?php
$num=pow(3, 2);
echo "Your number is = pow (3, 2)".'<br>';
echo "By using sqrt function Your number is:".$num;
?>
輸出:
Your number is =pow(3, 2) By using sqrt function Your number is:9
例子2
<?php
$num=pow(-4, 2);
echo "Your number is = pow (-4, 2)".'<br>';
echo "By using sqrt function Your number is:".$num;
?>
輸出:
Your number is = pow (-4, 2) By using sqrt function Your number is:16
例3
<?php
$num=pow(-3, -3);
echo "Your number is =pow(-3, -3)".'<br>';
echo "By using sqrt function Your number is:".$num;
?>
輸出:
Your number is =pow(-3, -3) By using sqrt function Your number is:-0.037037037037037
例4
<?php
$num=pow(-3, -3.2);
echo "Your number is =pow(-3, -3.2)".'<br>';
echo "By using sqrt function Your number is:".$num;
?>
輸出:
Your number is =pow(-3, -3.2) By using sqrt function Your number is:NAN
例 5
<?php
for($i=1;$i<=5;$i++){
echo "The power value of [$i] is". "=".pow($i,2)."<br>";
}
?>
輸出:
The power value of [1] is=1 The power value of [2] is=4 The power value of [3] is=9 The power value of [4] is=16 The power value of [5] is=25
相關用法
- PHP pow( )用法及代碼示例
- PHP pos()用法及代碼示例
- PHP popen( )用法及代碼示例
- PHP prev()用法及代碼示例
- PHP preg_filter()用法及代碼示例
- PHP pi( )用法及代碼示例
- PHP print_r()用法及代碼示例
- PHP parse_str()用法及代碼示例
- PHP php_strip_whitespace()用法及代碼示例
- PHP preg_split()用法及代碼示例
- PHP pack()用法及代碼示例
- PHP parse_url()用法及代碼示例
- PHP png2wbmp()用法及代碼示例
- PHP preg_replace()用法及代碼示例
- PHP preg_grep()用法及代碼示例
- PHP print()用法及代碼示例
- PHP pathinfo( )用法及代碼示例
- PHP preg_match()用法及代碼示例
- PHP pclose( )用法及代碼示例
- PHP pi()用法及代碼示例
注:本文由純淨天空篩選整理自 PHP pow() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。