PHP 字符串 'number_format()' 是內置的 PHP 函數。它用於格式化帶有千位分組的數字。它支持一、二或三個參數(不是三個)。
用法:
number_format(number,decimals,decimalpoint,separator)
參數 | 描述 | 必需/可選 |
---|---|---|
number | 正在格式化的數字。 | Required |
decimal | 設置小數點位數。 | Optional |
decimalpoint | 設置小數點的分隔符。 | Optional |
separator | 設置千位分隔符 | Optional |
例子1
<?php
$n=199.9;
echo "Your number is:".$n;
echo "<br>"."By using 'number_format()' function:".number_format($n);
?>
輸出:
Your number is:199.9 By using 'number_format()' function:200
例子2
<?php
$n=199.9;
echo "Your number is:".$n;
echo "<br>"."By using 'number_format()' function:".number_format($n,2);
?>
輸出:
Your number is:199.9 By using 'number_format()' function:199.90
例子3
<?php
$n=1000000;
echo "Your number is:".$n;
echo "<br>"."By using 'number_format()' function:".number_format($n);
?>
輸出:
Your number is:1000000 By using 'number_format()' function:1,000,000
示例 4
<?php
$n=1000000;
echo "Your number is:".$n;
echo "<br>"."By using 'number_format()' function:".number_format($n,2);
?>
輸出:
Your number is:1000000 By using 'number_format()' function:1,000,000.00
相關用法
- PHP string rtrim()用法及代碼示例
- PHP string printf()用法及代碼示例
- PHP string ord()用法及代碼示例
- PHP string join()用法及代碼示例
- PHP string sha1()用法及代碼示例
- PHP string setlocale()用法及代碼示例
- PHP string sha1_file()用法及代碼示例
- PHP string md5()用法及代碼示例
- PHP string ltrim()用法及代碼示例
- PHP string str_repeat()用法及代碼示例
- PHP string lcfirst()用法及代碼示例
- PHP string str_shuffle()用法及代碼示例
- PHP string similar_text()用法及代碼示例
- PHP string crypt()用法及代碼示例
- PHP string str_ireplace()用法及代碼示例
- PHP string str_split()用法及代碼示例
- PHP string strcoll()用法及代碼示例
- PHP string str_rot13()用法及代碼示例
- PHP string str_pad()用法及代碼示例
注:本文由純淨天空篩選整理自 PHP string number_format() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。