PHP log10() 函数
PHP log10() 函数
实例
返回不同数的以 10 为底的对数:
<?php
echo(log10(2.7183) . "<br>");
echo(log10(2) . "<br>");
echo(log10(1) . "<br>");
echo(log10(0));
?>
echo(log10(2.7183) . "<br>");
echo(log10(2) . "<br>");
echo(log10(1) . "<br>");
echo(log10(0));
?>
运行实例 »
定义和用法
log10() 函数返回一个数的以 10 为底的对数。
语法
log10(number);
参数 | 描述 |
---|---|
number | 必需。规定需计算对数的值。 |
技术细节
返回值: | number 的以 10 为底的对数。 |
---|---|
返回类型: | Float |
PHP 版本: | 4+ |
PHP Math 参考手册
相关文章
- PHP 语法
- PHP EOF(heredoc) 使用说明
- PHP 数据类型
- PHP 函数
- PHP array_count_values() 函数
- PHP array_diff() 函数
- PHP array_diff_assoc() 函数
- PHP array_diff_uassoc() 函数
- PHP array_intersect() 函数
- PHP array_intersect_uassoc() 函数
- PHP array_key_last() 函数
- PHP array_splice() 函数
- PHP array_uintersect() 函数
- PHP array_values() 函数
- PHP asort() 函数
- PHP each() 函数
- PHP sort() 函数
- PHP uasort() 函数
- PHP FTP 函数
- PHP Mail 函数