PHP printf () output formatted string, phpprintf
The PHP printf () function is used to output formatted strings, and this article introduces the use of the PHP printf () function and the basic usage examples of the code farm, which is of interest to the farmer.
Definition and usage
The printf () function outputs a formatted string.
The Arg1, arg2, arg++ parameters are inserted into the percent sign (%) symbol in the main string. This function is executed step-by. At the first% symbol, insert arg1, insert arg2 at the second% symbol, and so on.
Note: If the% symbol is more than the arg parameter, you must use a placeholder. Placeholders are inserted after the% symbol, consisting of numbers and "\$". See Example 2.
Tip: Related functions: sprintf (), vprintf (), vsprintf (), fprintf (), and vfprintf ()
- fprintf ()
- sprintf ()
- vfprintf ()
- vprintf ()
- vsprintf ()
Grammar
printf (format,arg1,arg2,arg++)
Parameters |
Description |
Format |
Necessary. Specifies the string and how to format the variable. Possible format values:
- Percent percent-returns a percent semicolon%
- %b-Binary number
- The character that corresponds to the%C-ASCII value
- %d-decimal number with sign (negative, 0, positive)
- %e-Using the lowercase scientific notation (e.g. 1.2e+2)
- %E-Use uppercase scientific notation (e.g. 1.2E+2)
- %u-decimal number with no sign (greater than or equal to 0)
- %f-Floating point number (local setting)
- %F-Floating point number (non-local setting)
- %g-Shorter%e and%f
- %G-Shorter%E and%f
- %o-Eight binary number
- %s-String
- %x-16 binary number (lowercase letters)
- %x-16 decimal digits (uppercase letters)
The attached format value. Must be placed between% and letter (e.g.%.2f):
- + (precede the number with + or-to define the positive and negative of the number.) By default, only negative numbers are marked, positive numbers are not marked)
- ' (specifies what to use as a fill, the default is a space.) It must be used with the width of the specified device. )
- -(left adjustment variable value)
- [0-9] (minimum width of the specified variable value)
- . [0-9] (Specify the number of decimal digits or the maximum string length)
Note: If you use more than one of the above format values, they must be used in the order above and cannot be disrupted. |
Arg1 |
Necessary. Specifies the parameter that is inserted into the first% symbol in the format string. |
Arg2 |
Necessary. Specifies the parameter that is inserted into the second% symbol in the format string. |
arg++ |
Optional. Specifies the parameter that is inserted into the format string third to fourth, and so on, in the% symbol. |
Technical details
return value: |
Returns the length of the string being output. |
PHP version: |
4 + |
Instance
Example 1
Use the format value%f:
Run online
Example 2
Use placeholders:
No decimals:%1\ $u ", $number);? >
Run online
Example 3
Demo of all possible format values:
", $num 2); Symbol specifier (negative)?>
Run online
Example 4
A demo of the string specifier:
" Hello " "Hello world! " ;p rintf ("[%s]
" , $str 1);p rintf ("[%8s]
" , $str 1);p rintf ("[%-8s]
" , $str 1);p rintf ("[%08s]
" , $str 1);p rintf ("[% ' *8s]
" , $str 1);p rintf ("[%8.8s]
" , $str 2);? >
Run online
Original address: http://www.manongjc.com/article/867.html
http://www.bkjia.com/PHPjc/1128122.html www.bkjia.com true http://www.bkjia.com/PHPjc/1128122.html techarticle php printf () output formatted string, phpprintf PHP printf () function is used to output formatted string, this article to the Code Farm introduction PHP printf () function of the use of the method and the basic use of the real ...