View Single Post
  #7  
Old 02-28-2011, 12:04 PM
fadillzzz fadillzzz is offline
Dev Staff
 
Join Date: Jan 2010
Posts: 501
Gender: Male
Credits: 36,255
fadillzzz is an unknown quantity at this point
Default

Echo is slightly faster than print because it doesn't have a return value.
It's also 1 less character than print so it's really useful for the lazy people
Echo can take multiple expressions while print can't.
PHP Code:
echo "Hello" "World"
Other than that, there's nothing different about these two
Reply With Quote