I use echo and print_r much, and almost never use print.
I feel echo is a macro, and print_r is an alias of var_dump.
But that's not the standard way to explain the differences.
|
I use echo and print_r much, and almost never use print. I feel echo is a macro, and print_r is an alias of var_dump. But that's not the standard way to explain the differences. |
|||||
|
|
With
|
|||||||||||||||||||||
|
|
echo
print_r()
Notes:
|
||||
|
|
|
Just to add to John's answer,
Also worth mentioning is that The difference between echoing and returning are:
|
|||||||||
|
Not having return type
Have return type
Outputs as formatted, |
||||
|
|