什么是PHP中的Exponentiation运算符?

时间:2017-08-26 11:25:18

标签: php math

有人能说出 ** 指数运算符在php中做了什么?

示例会更有用。

由于

1 个答案:

答案 0 :(得分:1)

exponentiation运营商。

功能

它给出了将一个变量提升到另一个varibale的幂的结果 因此,如果我们想要使用任何数字的n次幂,则使用此运算符

示例:

$x = 5;
$y = 3;
$z = $x ** $y; //<----- raising 3 power of 5 i.e we can say 5 raise to 3 in simple language . $x = base and $y= It is `exponentiation` operator.
echo $z; //results 125