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