Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Stack Overflow has many questions asking about PHP's print and echo keyword usage.

The purpose of this post is to provide a canonical reference question and answer about PHP's print and echo keywords and compare their differences and use-cases.

share|improve this question
1  
I think here is not enough about print returning value. Print is usefull for fast debug output or something like it: strpos($x,$y)!==FALSE OR print "something". Fast to type and good to read. And "Is print a function" was awkward to read for some reason(your argumentaion seems ... strange and not obvious) - it is language construct, there is far worse thing you can't do with it: variable functions. – XzKto Aug 17 '11 at 14:32
1  
To keep this open what needs to be done here is: 1. split into a question and answer. 2. Reference/link to existing content about the subject matter on Stack Overflow (kinda like here: stackoverflow.com/questions/3737139/…) but in the answer. 3. Needs to be CW. – Kev Aug 17 '11 at 15:08
Also don't make this "print vs echo" (it comes across as Gorilla vs Shark) - maybe something like Comparing PHP's print and echo statements – Kev Aug 17 '11 at 15:11
The "Related Column" is fine, but it's not very focused. To increase its value as a canonical reference question and answer then it should also be well researched and links to other specific good answers would add value. – Kev Aug 17 '11 at 15:37
@KevĪ© why did you remove most of the question? – Neal Aug 17 '11 at 15:39
show 2 more comments

1 Answer

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.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.