0 votes
in PHP by
What is the difference between "echo" and "print" in PHP?

1 Answer

0 votes
by

Echo can output one or more string but print can only output one string and always returns 1.

Echo is faster than print because it does not return any value.

...