echo and print in PHP?

  • echo can output multiple strings, and is slightly faster.
  • print can only output one string, and always returns 1.
echo "Hello ", "World";   // works
print "Hello World";      // works

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *