This may seem like a really daft question, but what is the reason for the existence of the printf() function in PHP?
It seems to me that that using echo will achieve the exact same results, with the added bonus that you don't get confused if you have several variables being output on one line (true, you can use %1$s as opposed to just %s, but it can still get messey with a few variables all being declared).
I know you can also define the type of the variable, without the need to amend it before outputting the string, but to me that doesn't seem like enough to warrent creating a function.
Maybe I'm wrong, maybe I'm missing something obvious, but if someone can help me to understand why it exists (so that I know whether or not I should really be using it!) I'd appriciate it. Thanks.
echo 'Hello '.$name.'.';andprintf('Hello %s.', $name);produce exactly the same results. That was the basis of my question, to find and understand the differences between them to ensure that I am coding efficiently and using the resources that PHP provides to the best of my ability. – David Gard May 15 '12 at 13:06printf()offers the ability the produce output with formatting all in one go, but what the manual didn't explain was whether or not there were any advatages to using it overechoif you are outputting a string that contains, say two variables, that are already formatted as you wish. So it was about making sure that I was uingprintf(), andecho, for the right things, and not missing out on important performance gains that may have existed. – David Gard May 15 '12 at 13:55printfthen is somewhat odd (to me). Also performance-wise you are in the realm of micro-optimizations here. – Gordon♦ May 15 '12 at 14:49