log10() 函数是预定义的 php 数学函数。它用于返回一个数字的以 10 为底的对数。
用法:
log10(num);
参数 | 描述 | 必需/可选 |
---|---|---|
Number | 指定计算对数的值。 | Required |
注:num 为输入数字,Base 固定为 10。
示例 1
<?php
$num=5;
echo "Your number is:".$num;
echo "<br>"."By using log10() function your number is:".log($num);
?>
输出:
Your number is:5 By using log10() function your number is:1.6094379124341
例2
<?php
$num=1.234;
echo "Your number is:".$num;
echo "<br>"."By using log10() function your number is:".log($num);
?>
输出:
Your number is:1.234 By using log10() function your number is:0.2102609254832
例3
<?php
$num=1;
echo "Your number is:".$num;
echo "<br>"."By using log10() function your number is:".log($num);
?>
输出:
Your number is:1 By using log10() function your number is:0
例4
<?php
$num=0;
echo "Your number is:".$num;
echo "<br>"."By using log10() function your number is:".log($num);
?>
输出:
Your number is:0 By using log10() function your number is:-INF
例5
<?php
$num=-1;
echo "Your number is:".$num;
echo "<br>"."By using log10() function your number is:".log($num);
?>
输出:
Your number is:-1 By using log10() function your number is:NAN
相关用法
- PHP log1p()用法及代码示例
- PHP log()用法及代码示例
- PHP long2ip()用法及代码示例
- PHP localtime()用法及代码示例
- PHP ltrim()用法及代码示例
- PHP lcg_value()用法及代码示例
- PHP lstat( )用法及代码示例
- PHP list()用法及代码示例
- PHP link( )用法及代码示例
- PHP lcfirst()用法及代码示例
- PHP levenshtein()用法及代码示例
- PHP SimpleXMLElement children()用法及代码示例
- PHP PHPUnit assertIsNotFloat()用法及代码示例
- PHP ReflectionClass getTraitAliases()用法及代码示例
- PHP hash_hmac()用法及代码示例
- PHP String wordwrap()用法及代码示例
- PHP imagecreatefromstring()用法及代码示例
- PHP is_file( )用法及代码示例
- PHP ArrayIterator asort()用法及代码示例
- PHP IntlCalendar getTimeZone()用法及代码示例
注:本文由纯净天空筛选整理自 PHP log10() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。