php 算术运算符 ** 幂

 

 

2**2 = 4

4**4 = 256

 

$a ** $b 求幂 $a 的 $b次方的值. PHP 5.6版本中引入.

 

php官网:https://www.php.net/manual/zh/language.operators.arithmetic.php

你可能感兴趣的:(php,php)