Php implementation of adding 0 complement before formatting digits with less digits

Source: Internet
Author: User
Php implementation of adding 0 complement before formatting digits with less digits
Php format the number. when the number of digits is insufficient, add 0 to complement it. This article provides two implementation methods, sprintf and number_format, respectively. If you need it, come and have a look.

Example of formatting a number in php.

     

1. string sprintf () function syntax

Sprintf (format, arg1, arg2, arg ++)

Parameters Description
Format Required. Conversion format.
Arg1 Required. Specifies the parameter inserted at the first % symbol in the format string.
Arg2 Optional. Specifies the parameter inserted at the second % symbol in the format string.
Arg ++ Optional. Specifies the parameters inserted to the third, fourth, and other % symbols in the format string.
Description

The format parameter is the conversion format. it starts with the percent sign ("%") and ends with the conversion character. The following possible format values: %-return percent sign % B-binary number % c-following the ASCII value character % d-signed decimal number % e-resumable notation (such as 1.5e + 3) % u-unsigned decimal number % f-floating point number (local settings aware) % F-floating point number (not local settings aware) % o-octal digits % s-string % x-hexadecimal digits (lowercase letters) % X-hexadecimal digits (uppercase letters)

Parameters such as arg1, arg2, ++ are inserted to the percent sign (%) in the main string. This function is executed step by step. In the first % symbol, insert arg1, at the second % symbol, insert arg2, and so on. Example:

      

II. example of the format numeric function number_format:

     

Related Article

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.