What is the difference between “print” and “echo”?

A.
There is no difference.
B.
Print returns length of data printed and echo does not
C.
Echo returns length of the data printed and print does not
D.
Print buffers the output, while echo does not
E.
None of the above
B would be right for printf, but not for print.
E should be the correct answer.
0
0
B
0
0
Correct is E:
“Return Values: Returns 1, always.”
http://php.net/manual/en/function.print.php
1
0
The major differences to echo are that print only accepts a single argument and always returns 1.
0
0