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

Possible Duplicate:
Reference: Comparing PHP's print and echo

Is there any major and fundamental difference between these two functions in PHP?

share|improve this question
In addition to other answers. Echo is 20% faster then print. Source: http://www.learnphponline.com/php-basics/php-echo-vs-print – Volodymyr Frytskyy Nov 27 '11 at 1:11

marked as duplicate by Kev Nov 27 '11 at 1:14

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

6 Answers

up vote 78 down vote accepted

From: http://www.faqts.com/knowledge_base/view.phtml/aid/1/fid/40

  1. Speed. There is a difference between the two, but speed-wise it should be irrelevant which one you use. echo is marginally faster since it doesn't set a return value if you really want to get down to the nitty gritty.

  2. Expression. print() behaves like a function in that you can do: $ret = print "Hello World"; And $ret will be 1. That means that print can be used as part of a more complex expression where echo cannot. An example from the PHP Manual:

$b ? print "true" : print "false";

print is also part of the precedence table which it needs to be if it is to be used within a complex expression. It is just about at the bottom of the precedence list though. Only "," AND, OR and XOR are lower.

  1. Parameter(s). The grammar is: echo expression [, expression[, expression] ... ] But echo ( expression, expression ) is not valid. This would be valid: echo ("howdy"),("partner"); the same as: echo "howdy","partner"; (Putting the brackets in that simple example serves no purpose since there is no operator precedence issue with a single term like that.)

So, echo without parentheses can take multiple parameters, which get concatenated:

   echo  "and a ", 1, 2, 3;   // comma-separated without parentheses
   echo ("and a 123");        // just one parameter with parentheses

print() can only take one parameter:

   print ("and a 123");
   print  "and a 123";
share|improve this answer
6  
Echo can also be used in a ternary operation: echo ($b) ? 'true' : 'false'; – philjohn Aug 22 '10 at 20:23
1  
@philjohn I'm pretty sure your statement is equavalent to: echo (($b) ? 'true' : 'false'); and not: (echo ($b)) ? 'true' : 'false'; So echo is not part of the actual condition in the ternary operation. – Bart Nov 15 '11 at 16:11
1  
In the interests of making something not doable with echo: $b ? print "true" : die("false"); – Brilliand Aug 16 '12 at 22:41

They are:

  • print only takes one parameter, while echo can have multiple parameters.
  • print returns a value (1), so can be used as a function.
  • echo is slightly faster.
share|improve this answer

As the PHP.net manual suggests, take a read of this discussion.

One major difference is that echo can take multiple parameters to output. E.g.:

echo('foo', 'bar');
print('foo', 'bar'); //Fatal error

If you're looking to evaluate the outcome of an output statement (as below) use print. If not, use echo.

$res = print('test');
var_dump($res); //bool(true)
share|improve this answer
3  
echo doesn't accept echo('foo','bar');, but does accept echo 'foo', 'bar'; – grilix Mar 19 '09 at 17:54

The PHP manual pages for print and echo link to this document.

share|improve this answer

To add to the answers above, while print can only take one parameter, it will allow for concatenation of multiple values, ie:

$count = 5;

print "This is " . $count . " values in " . $count/5 . " parameter";

This is 5 values in 1 parameter

share|improve this answer

I think print() is slower than echo.

I like to use print() only for situations like:

 echo 'Doing some stuff... ';
 foo() and print("ok.\n") or print("error: " . getError() . ".\n");
share|improve this answer

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