PHP exp() 函数
PHP exp() 函数
实例
返回 'e' 的不同次方:
<?php
echo(exp(0) . "<br>");
echo(exp(1) . "<br>");
echo(exp(10) . "<br>");
echo(exp(4.8));
?>
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);
参数 | 描述 |
---|---|
x | 必需。规定指数。 |
技术细节
返回值: | 'e' 的 x 次方。 |
---|---|
返回类型: | Float |
PHP 版本: | 4+ |
PHP Math 参考手册
相关文章
- PHP 变量
- PHP echo 和 print 语句
- PHP EOF(heredoc) 使用说明
- PHP 数据类型
- PHP If Else 语句
- PHP 文件处理
- PHP 文件上传
- PHP array_column() 函数
- PHP array_combine() 函数
- PHP array_merge_recursive() 函数
- PHP array_push() 函数
- PHP array_reduce() 函数
- PHP array_slice() 函数
- PHP array_sum() 函数
- PHP array_uintersect_uassoc() 函数
- PHP arsort() 函数
- PHP asort() 函数
- PHP extract() 函数
- PHP sizeof() 函数
- PHP 5 Date/Time 函数