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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。