(PHP 4, PHP 5)
pow — 指数表达式
$base
, number $exp
)
返回 base
的
exp
次方的幂。如果可能,本函数会返回
integer。
base
The base to use
exp
指数
base
的
exp
次方的幂。
If both arguments are non-negative integers and the result can be represented
as an integer, the result will be returned with integer type,
otherwise it will be returned as a float.
版本
说明
4.2.0
如果不能计算幂,将发出一条警告,pow() 将返回 FALSE
。pow() 开始不产生任何的警告。
4.0.6
如果可能函数现在会返回 integer 的结果,之前
总是返回 float,For older
versions, you may receive a bogus result for complex numbers.
Example #1 pow() 的一些例子
<?php
var_dump(pow(2, 8)); // int(256)
echo pow(-1, 20); // 1
echo pow(0, 0); // 1
echo pow(-1, 5.5); // PHP >4.0.6 NAN
echo pow(-1, 5.5); // PHP <=4.0.6 1.#IND
?>
Note:
本函数会转换所有输入为数字,即使是非标量值,会导致怪异的(weird)结果。
exp() - 计算 e 的指数 sqrt() - 平方根 bcpow() - Raise an arbitrary precision number to another gmp_pow() - Raise number into power
PHP:pi()的用法_Math函数
pi(PHP4,PHP5)pi得到圆周率值说明floatpi(void)返回圆周率的近似值。返回值的float精度是由php.ini中的precision指令确定。默认值是14。你也可以使用M_PI常量,该
PHP:mt_srand()的用法_Math函数
mt_srand(PHP4,PHP5)mt_srand播下一个更好的随机数发生器种子说明voidmt_srand([int$seed])用seed来给随机数发生器播种。没有设定seed参数时,会被设为随时数。Note:
PHP:octdec()的用法_Math函数
octdec(PHP4,PHP5)octdec八进制转换为十进制说明numberoctdec(string$octal_string)返回octal_string参数所表示的八进制数的十进制等值。参数octal_string要转换的八进制的