PHP number_format()

WBOY
發布: 2024-08-29 12:56:11
原創
988 人瀏覽過

Php number_format 是 Php 中的函數,用於格式化給定的千位數字。它是 Php 中的內建函數,根據程式設計師在參數中給出的具體要求傳回格式化的數字,否則在失敗時會向使用者發出 E_WARNING。可以用逗號或其他分隔符號分隔千位元。它接受浮點數並傳回以千位分隔的格式化數字的字串,該數字具有四捨五入值或小數值到特定數字。預設情況下,number_format() 函數在向其中傳遞數字時使用 (,) 運算子分隔一千組。它是表示浮點數的簡單且用戶友好的方式之一,用戶很容易理解。

開始您的免費軟體開發課程

網頁開發、程式語言、軟體測試及其他

文法

下面給出了在 Php 中使用 number_format() 函數的基本語法:

string number_format( float $num, int $decimal =0, string $dec_pt = ' . ' , string $thousand_sep = ' , '  )
登入後複製

哪裡,

  • $num = 此參數為必填項。這是需要格式化的浮點數。如果不設定其他參數,則將要格式化的數字轉換為十進制,千位之間以分隔符號分隔。
  • $decimal = 此參數是可選的。此參數指定格式化數字後要顯示多少位小數。如果設定此參數,則在數字後面列印 (.),千位組之間列印 (,)。
  • $dec_pt = 此參數也是可選的,用於設定十進位值的分隔符號。
  • $sep = 此參數也是可選的。它用於指定用於分隔數千個值的字串。當該值由多個字元給出時,僅使用第一個字元。要記住的一個重要條件是,當提到此參數時,需要使用所有其他參數。
  • 傳回值:成功時,函數根據指定的參數傳回格式化後的String類型的數字,否則失敗時傳回E_WARNING。

number_format() 函數如何運作?

下面給出了描述 Php 中 number_format() 函數運作原理的一些要點:

  • 可以指定浮點數應顯示的小數點位數以及千位組和小數點的不同分隔符號。
  • Php 函數 number_format() 接受一個、兩個或四個參數。它無法接受三個參數。
  • 預設情況下,number_format() 函數使用 (.) 運算子表示小數點,使用 (,) 表示一千組。
  • 函數 number_format() 傳回字串值,這意味著我們不能使用它的輸出進行數學計算。因此需要記住,只有在顯示輸出時才需要使用它。
  • 僅傳遞一個參數時,將浮點數四捨五入為最接近的整數,不帶小數點,千位以逗號分隔。

PHP number_format() 範例

程式中描述 Php number_format() 函數運作原理的一些範例如下:

範例#1

 代碼:

<!DOCTYPE html>
<html>
<body>
<?php
$f_num = "Number";
//Using only 1 parameter, i.e. number to be formatted
echo " The formatted number is ". number_format($f_num)."\n\n";
//Using the decimal point and printing the decimal upto the specific digits (2 parameters)
echo number_format($f_num, 5);
?>
</body>
</html>
登入後複製

輸出:

PHP number_format()

解釋:在上面的程式碼中,變數‘f_num’中的數字應該是浮點數,但卻是一個字串。因此基本上,字串作為 number_format() 函數中的參數傳遞,這在技術上是不正確的。因此,在控制台上會向使用者顯示語法錯誤的錯誤訊息。

範例#2

 代碼:

<!DOCTYPE html>
<html>
<body>
<?php
$f_num = "123.78";
$f_num1 = "67.09";
// With only 1 parameter , i.e. number to be formatted
echo number_format($f_num).'<br>';
echo number_format($f_num1).'<br>';
// Using the decimal point (2 parameters)
echo number_format($f_num, 5).'<br>';
echo number_format($f_num1, 3);
?>
</body>
</html>
登入後複製

輸出:

PHP number_format()

解釋:在上面的程式碼中,使用變數「f_num」和「f_num1」給了兩個浮點數。僅使用數字變數作為 number_format() 函數中的參數,將分離一千個群組。由於兩個給定的數字中都不存在一千個組,因此不存在分離。為了將值列印到特定的小數點,需要傳遞值為 5 和 3 的第二個參數。因此,在輸出中,小數點到給定位數的浮點數將列印在控制台上。

範例 #3

 代碼:

<!DOCTYPE html>
<html>
<body>
<?php
$f_num = "178923.78";
$f_num1 = "665467.09";
// Using only 1 parameter, i.e. number to be formatted
echo number_format($f_num).'<br>';
echo number_format($f_num1).'<br>';
// Using the separators for decimal point and thousand groups(4 parameters)
echo number_format($f_num, 5, '.', ',').'<br>';
echo number_format($f_num1, 3, ':', '.');
?>
</body>
</html>
登入後複製

輸出:

 PHP number_format()

Explanation: In the above code, a single parameter (number to be formatted) is passed in the function number_format() and a thousand groups in the number given are separated with the (,) operator by default. In order to print the number with the specific separators in thousand groups and decimal points, third and fourth parameters are passed using those separators in the function and printed on the console.

Example #4

 Code:

<!DOCTYPE html>
<html>
<body>
<?php
$f_num = "178923.78";
$f_num1 = "665467.09";
//Using the separators for decimal point only(3 parameters)
echo number_format($f_num, 5, ",").'<br>';
echo number_format($f_num1, 3, ".");
?>
</body>
</html>
登入後複製

Output:

PHP number_format()

Explanation: In the above code, 2 floating numbers are given and only 3 parameters are passed in the number_format() function which is not allowed technically. As the number_format() function either accepts 1, 2 or 4 parameters. So a Warning message is displayed to the user indicating the wrong parameters.

Conclusion

The above description clearly explains what is the number_format() function in Php and how it works to format the floating numbers. This function provides the flexibility to the user to display the output according to the specific requirements by passing the different parameters. It also shows warnings and results in unexpected outputs. So one needs to understand it properly and needs to be very careful before using it in a program.

以上是PHP number_format()的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
php
來源:php
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!