PHP echo vs print

Advantages of echo:
  • Faster
  • Can take multiple parameters (separated by comma)

Advantages of print:
  • Can use as a function (have a return value)
  • Can take multiple parameters

Reference:
http://stackoverflow.com/questions/234241/how-are-echo-and-print-different-in-php

No comments:

Post a Comment