Source Code:
(back to article)
<?php // Raise a number to a power using the pow() function $result = pow(2, 3); // Output the result echo $result; ?>
Result:
Report an issue