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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。