English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية
Thepow()
The function returns the remaining capacity raised to the power of B.
pow(a,b)
a-base
b-exponent
Thepow()
The function returns the remaining capacity raised to the power of B.
<?php echo(pow(3,5) . "<br>"); ?>
Output Result
243<br>
Let's look at another example-
<?php echo(pow(-4,6) . "<br>"); echo(pow(-3,-9) . "<br>"); ?>
Output Result
4096<br>-5.0805263425291E-5<br>
Let's look at another example-
<?php echo(pow(-4,-5.3)); ?>
Output Result
NAN