返回 'e' 的不同次方:
<?php echo(exp(0) . "<br>");echo(exp(1) . "<br>"); echo(exp(10) . "<br>"); echo(exp(4.8)); ?>
The exp() 函数返回 e 的 x 次方(ex)。
'e' 是自然对数的底(其数值大约等于 2.718282),x 是指数。
exp(x);