However, we can pass multiple parameters to echo, like:
and it will output the string "Welcome to PHP MySQL Guide!"
print does not take multiple parameters. It is also generally argued that echo is faster, but usually the speed advantage is negligible, and might not be there for future versions of PHP.
printf is a function, not a construct, and allows such advantages as formatted output, but it’s the slowest way to print out data out of echo, print and printf.
No comments:
Post a Comment