Why two constructs?
Having two distinct constructs for the same thing is a result of php's design-less, crowd-driven "natural" development. I don't know the real story, but I guess someone in php team used to work a lot with unix shell and borrowed echo from it, and someone else thought it would be nice to have print that behaves like its Perl counterpart.
Syntax
In C-alike languages there is a distinction between statements and expressions. Syntactically, echo is a (simple) statement, like break or return and print is an (unary) operator, like "!" or "~". Therefore, like any other statement, echo cannot be part of an expression:
5 + return 6; // invalid
5 + echo 6; // invalid
and print, just like any other operator, can alone form a statement:
$a = 5; // valid
!5; // valid, but doesn't make sense
print 5; // valid
You can freely use print wherever an operator can be used, although it can get weird very quickly:
$a = 10 + print 7;
for($i = 0; $i <= print 1; $i += print 2)
print 3;
print print print print 7;
Why does print return a value and echo doesn't?
In order to form valid expressions, operators are required to give back a value, even if this value is ignored.
!true; // gives back "false", ignored
print x; // gives back "1", ignored
Statements cannot be part of an expression and hence don't return anything.
Is print a function?
No, because every php function can be called with a variable number of arguments. This doesn't work with print:
print(1, 2, 3); // invalid
Is print a "language construct"?
The term "language construct" is pretty vague, but in php it usually used to refer to "pseudo" functions like isset or empty. Although these "constructs" look exactly like functions, they are actually fexprs, that is, the arguments are passed to them without being evaluated, which requires special treatment from the compiler. print, on the contrary, is not "special" in that sense and works just like any other operator.
Why does print(foo) work then?
For the same reason why "-(5 + 4)" works. Every operator can be applied to a sub-expression in parenthesis. Note that these parenthesis are quite different from function call parenthesis since they don't allow commas inside.
Why exactly print(1,2,3) and echo(1,2,3) don't work?
The syntax is print expression, echo expression or echo expression, expression. When php encounters (1,2,3), it tries to parse it as a single expression and fails, because unlike C, comma is not a valid operator in php.
Differences at the bytecode level
print involves a small overhead of populating the return variable (pseudocode)
print 125;
PRINT 125,$temp ; print 125 and place 1 in $temp
UNSET $temp ; remove $temp
single echo compiles to one opcode:
echo 125;
ECHO 125
multi-value echo compiles to multiple opcodes
echo 123, 456;
ECHO 123
ECHO 456
Note that, on the contrary to popular belief, multi-value echo doesn't concatenate its arguments, but just outputs them one by one.
Reference: http://svn.php.net/viewvc/php/php-src/trunk/Zend/zend_compile.c , functions zend_do_print, zend_do_echo.
Runtime differences
PRINT opcode is implemented as follows (pseudocode)
PRINT var, result:
result = 1
ECHO var
So it basically puts "1" in the result variable and delegates the real job to the ECHO handler. ECHO does the following
ECHO var:
if var is object
temp = var->toString()
zend_print_variable(temp)
else
zend_print_variable(var)
where zend_print_variable() performs the actual "printing" (in fact, it merely redirects to a dedicated SAPI function).
Reference: http://svn.php.net/viewvc/php/php-src/trunk/Zend/zend_vm_def.h , handlers ZEND_PRINT, ZEND_ECHO
Speed: echo x vs print x
print wastes some time allocating a temporary variable, but this isn't much, so the difference will be negligible.
Speed: echo a,b,c vs echo a.b.c
The first one compiles down to three separate statements, the second evaluates the expression, prints the result and disposes it immediately. Since concatenation involves memory allocations and copying, the first option will be more efficient.
So which one to use?
In web applications, output is mostly concentrated in templates. Since templates use <?=, which is the alias of echo, it seems logical to stick to echo in other parts of code as well. echo has an additional advantage of being able to print multiple expression without concatenating them and doesn't involve an overhead of populating a temporary return variable. So, use echo.
printandechostatements – Kev Aug 17 '11 at 15:11