like
%2$s
%04d
%01.2f
%'#10s
etc.
can you give me some more commonly used combination?
like
%2$s
%04d
%01.2f
%'#10s
etc.
can you give me some more commonly used combination?
A type specifier that says what type the argument data should be treated as. Possible types:
I don't want this to come as a RTFM, but PHP has some of the cleanest and easiest to use documentation I've ever seen. Here's a tip for this question, and just about any other PHP documentation question:
If you type a valid function name it takes you directly to the documentation for that function. This is exactly what meder did, and he cut and pasted the documentation directly here. If you mistype or don't know the spelling, as long as you're reasonably close, PHP will offer a list of suggestions.
The StackOverflow community should be less of a "read the manual for me" community, and more of a "I've already tried, and I need help".
Hope this helps you for future questions.