: This article mainly introduces how to display PHP Data separated by thousands of delimiters. For more information about PHP tutorials, see. In PHP, the number_format () function is used to format numbers through a thousand-bit grouping.
Number_format (number, decimals, decimalpoint, separator)
Number is required. The number to be formatted. If no other parameter is set, the number is formatted as a comma (,) without a decimal point.
Optional. Specifies the number of decimal places. If this parameter is set, the period (.) is used as the decimal point to format the number.
Decimalpoint is optional. Specifies the string used as the decimal point.
Optional. A string that is required to be used as a thousands separator. Use only the first character of this parameter. For example, "xyz" only outputs "x ".
※Note: If this parameter is set, all other parameters are required.
$ Number = 1234.56;
// English representation (default)
Number_format ($ number); // 1,235.
// French representation
Number_format ($ number, 2, ',', ''); // There is a space between the last single quotation marks () and 56.
$ Number = 1234.5678;
// English notation without the sub-digit
Number_format ($ number, 2, '.', ''); // 1234.57
// The most common Chinese representation, which has two floating point numbers: ',', and '.'.
Number_format ($ number, 2, '.', ','); // 1,234.57
The preceding section describes how to separate and display PHP data with a thousand-bit separator, including some content. I hope to help anyone who is interested in PHP tutorials.