printf() and sprintf() Formatting Types : printf « Utility Function « PHP






printf() and sprintf() Formatting Types

 
Type       Description

%          A literal percent character. No argument is required.

b          The argument is treated as an integer and presented as a binary number.

c          The argument is treated as an integer and presented as the character with that American Standard Code for Information Interchange (ASCII) value.

d         The argument is treated as an integer and presented as a (signed) decimal number.

e         The argument is treated as scientific notation (for example, 1.2e+2).

u         The argument is treated as an integer and presented as an unsigned decimal number.

f         The argument is treated as a float and presented as a floating-point number (locale aware).

F         The argument is treated as a float and presented as a floating-point number (nonlocale aware). Available since PHP 4.3.10 and PHP 5.0.3.

o         The argument is treated as an integer and presented as an octal number.

s         The argument is treated and presented as a string.

x         The argument is treated as an integer and presented as a hexadecimal number (with lowercase letters).

X         The argument is treated as an integer and presented as a hexadecimal number (with upper-case letters).
  
  








Related examples in the same category

1.@printf("

Maths: %d; English: %d; History: %d; Biology: %d.

\n"
2.Adding the
 and 
tags so the spaces display
3.printf and format
4.printf and string format
5.printf puts the numbers into the string
6.printf() Type Specifiers
7.printf() and Type Specifiers
8.printf() and sprintf() Formatting Types
9.Displaying signs with printf()
10.Format an integer and a floating-point value with the printf() function.
11.Format strings for use in printf( )
12.Formatting a price with printf()
13.The printf function formats complex strings using a single expression.
14.Use printf to output float numbers
15.Using printf() to Format a List of Product Prices
16.Working with printf()
17.Zero-padding with printf()
18.int printf ( string format [, mixed argument [, mixed ...]] ) is the standard C way to format text
19.Demonstrating Some Type Specifiers
20.Displaying a real number in money format
21.Displaying long text with an ellipsis
22.Displaying the same number in different formats
23.Example: Displaying a number in binary format
24.Left-aligned by prepending a minus symbol (-) to the field width specifier
25.When you specify a color in HTML, you combine three hexadecimal numbers between 00 and FF.
26.Pad with leading zeroes:
27.Padding Output with the Padding Specifier