Rumah > Artikel > pembangunan bahagian belakang > pow函数怎么用
PHP pow函数表示指数表达式。
pow函数怎么用?
php pow()函数 语法
作用:pow()函数的作用是将一个数进行n次方计算后返回
语法:
pow(X,Y);
参数:
X表示要做处理的数字
Y表示指定n次方中的n数值
说明:返回X的Y次方幂,如果参数正确,函数会返回一个数值,如果无法计算,会返回NAN。
php pow()函数使用示例:
<?php $i = 5; $i = pow($i,3); $j = 6.5; $j = pow($j,4); $k = -5; $k = pow($k,5); $h = -0.5; $h = pow($h,0.6); echo $i."*****".$j."*****".$k."*****".$h; ?>
输出:
125*****1785.0625*****-3125*****NAN
本篇文章就是关于PHP pow函数的介绍,希望对需要的朋友有所帮助!
Atas ialah kandungan terperinci pow函数怎么用. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!