PHP log10() 函數(shù)
PHP log10() 函數(shù)
實(shí)例
返回不同數(shù)的以 10 為底的對(duì)數(shù):
<?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));
?>
運(yùn)行實(shí)例 ?
定義和用法
log10() 函數(shù)返回一個(gè)數(shù)的以 10 為底的對(duì)數(shù)。
語(yǔ)法
log10(number);
參數(shù) | 描述 |
---|---|
number | 必需。規(guī)定需計(jì)算對(duì)數(shù)的值。 |
技術(shù)細(xì)節(jié)
返回值: | number 的以 10 為底的對(duì)數(shù)。 |
---|---|
返回類(lèi)型: | Float |
PHP 版本: | 4+ |

相關(guān)文章
- PHP 語(yǔ)法
- PHP EOF(heredoc) 使用說(shuō)明
- PHP 數(shù)據(jù)類(lèi)型
- PHP 函數(shù)
- PHP array_count_values() 函數(shù)
- PHP array_diff() 函數(shù)
- PHP array_diff_assoc() 函數(shù)
- PHP array_diff_uassoc() 函數(shù)
- PHP array_intersect() 函數(shù)
- PHP array_intersect_uassoc() 函數(shù)
- PHP array_key_last() 函數(shù)
- PHP array_splice() 函數(shù)
- PHP array_uintersect() 函數(shù)
- PHP array_values() 函數(shù)
- PHP asort() 函數(shù)
- PHP each() 函數(shù)
- PHP sort() 函數(shù)
- PHP uasort() 函數(shù)
- PHP FTP 函數(shù)
- PHP Mail 函數(shù)