PHP log() 函数
PHP log() 函数
实例
返回不同数的自然对数:
<?php
echo(log(2.7183) . "<br>");
echo(log(2) . "<br>");
echo(log(1) . "<br>");
echo(log(0);
?>
echo(log(2.7183) . "<br>");
echo(log(2) . "<br>");
echo(log(1) . "<br>");
echo(log(0);
?>
运行实例 »
定义和用法
log() 函数返回一个数的自然对数,或者以 base 为底的 number 的对数。
语法
log(number,base);
参数 | 描述 |
---|---|
number | 必需。规定需计算对数的值。 |
base | 可选。要使用的对数的底。默认是 'e'。 |
技术细节
返回值: | 一个数的自然对数,或者以 base 为底的 number 的对数。 |
---|---|
返回类型: | Float |
PHP 版本: | 4+ |
PHP 更新日志: | PHP 4.3:新增 base 参数。 |
PHP Math 参考手册
相关文章
- PHP 简介
- PHP 字符串
- PHP Switch 语句
- PHP 异常处理
- PHP 过滤器
- PHP JSON
- PHP array_diff_uassoc() 函数
- PHP array_intersect_key() 函数
- PHP array_slice() 函数
- PHP array_sum() 函数
- PHP array_udiff_uassoc() 函数
- PHP array_uintersect() 函数
- PHP array_uintersect_assoc() 函数
- PHP array_uintersect_uassoc() 函数
- PHP compact() 函数
- PHP list() 函数
- PHP natcasesort() 函数
- PHP shuffle() 函数
- PHP Libxml 函数
- PHP 杂项 函数