Source Code:
(back to article)
<?php $number = 2; // Calculate the exponential value of the number using the exp() function $exponential_value = exp($number); // Output the exponential value of the number echo $exponential_value; ?>
Result:
Report an issue