For some reason, I have adopted using printf($var) over using echo $var. I don't really know why.
However, it seems like if I ever have an issue outputting a string from a variable - if I change printf($var) to echo $var - 90% of the time it fixes the issue.
This has happened to me on more than one occasion with differing errors, anywhere from too few arguments to just echoing a null/blank string.
Can anyone shed some light as to why printf() seems to work less reliably than echo?



printf()for performance questions :) – Jack Oct 22 '12 at 4:21