Difference between print and echo

echo – can output one or more strings
print – can only output one string, and returns always 1
Tip: echo is marginally faster compared to print as echo does not return any value.

echo “This”, ” string”, ” was”, ” made”, ” with multiple parameters.”;

usage of echo with short open tag

I have < ? =$foo ? > foo

Leave a Reply