PHP data is displayed with the delimiter separated by thousands

Source: Internet
Author: User
: 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.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.