Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I use echo and print_r much, and almost never use print.

I feel echo is a macro, and print_r is an alias of var_dump.

But that's not the standard way to explain the differences.

share|improve this question
1  
print_r isn't exactly an alias of var_dump - it outputs in a different format. Notably, the output from var_dump also includes the "type" of each variable. – thomasrutter Jan 7 at 1:30

4 Answers

print and echo are more or less the same; they are both language constructs that display strings. The differences are subtle: print has a return value of 1 so it can be used in expressions whereas echo has a void return type; echo can take multiple parameters, although such usage is rare; echo is slightly faster than print. (Personally, I always use echo, never print.)

var_dump prints out a detailed dump of a variable, including its type and the type of any sub-items (if it's an array or an object). print_r prints a variable in a more human-readable form: strings are not quoted, type information is omitted, array sizes aren't given, etc.

var_dump is usually more useful than print_r when debugging, in my experience. It's particularly useful when you don't know exactly what values/types you have in your variables. Consider this test program:

$values = array(0, 0.0, false, '');

var_dump($values);
print_r ($values);

With print_r you can't tell the difference between 0 and 0.0, or false and '':

array(4) {
  [0]=>
  int(0)
  [1]=>
  float(0)
  [2]=>
  bool(false)
  [3]=>
  string(0) ""
}

Array
(
    [0] => 0
    [1] => 0
    [2] => 
    [3] => 
)
share|improve this answer
2  
I've never used print either (over echo). – cletus Oct 30 '09 at 0:26
5  
print is also a language construct. Wikipedia defines it as: "a syntactically allowable part of a program that may be formed from one or more lexical tokens in accordance with the rules of a programming language". – nico Jun 7 '10 at 6:26
4  
This answer contains some inaccuracies - not only is print indeed a language construct just like echo, but they don't do "exactly the same thing". Print returns a value, so it can be used in an expression while echo doesn't. Echo allows echoing more than one string separated by commas while print doesn't. – thomasrutter Jun 7 '10 at 6:30
1  
Also echo is more efficient & quicker than print source(learnphponline.com/php-basics/php-echo-vs-print) – Ben Rowe Jun 7 '10 at 6:39
2  
Edited two years later to correct the inaccuracies identified in these comments. Thanks all, I must've been sleeping on Jun 7 '10. ;-) – John Kugelman Sep 24 '11 at 2:24
show 3 more comments

echo

  • No return value
  • Outputs one or more strings separated by commas

    e.g. echo "String 1", "String 2"

print

  • Returns 1, so it can be used in an expression
  • Outputs only a single string

    e.g. if ((print "foo") && (print "bar"))

print_r()

  • Outputs any variable (not just strings but even arrays, objects) as a formatted, human-readable string representation. Good for debugging. It's a more human-readable serialization than serialize().
  • No return value, unless using the second optional argument, which causes it to return a string containing what would have been output instead of outputting it.

Notes:

  • Even though print can be used in an expression, I'd generally avoid doing so for the sake of readability. The precedence rules when it interacts with other operators can also be confusing.
  • Whereas echo and print are language constructs, print_r() is a function. You don't need parentheses to enclose the arguments to echo or print (and if you do use them, they'll be treated as they would in an expression).
share|improve this answer

Just to add to John's answer, echo should be the only one you use to print content to the page.

print is slightly slower. var_dump() and print_r() should only be used to debug.

Also worth mentioning is that print_r() and var_dump() will echo by default, add a second argument that evaluates to true to get it to return instead, e.g. print_r($array, TRUE).

The difference between echoing and returning are:

  • echo: Will immediately print the value to the output.
  • returning: Will return the function's output as a string. Useful for logging, etc.
share|improve this answer
Just because you sort of raised the issue, what's the difference between echoing and returning? – David Thomas Oct 30 '09 at 0:31
1  
wow I wish I knew about the returning parameter :( basically you can do $foo = print_r($array, true); and use it in other ways (into a log, table, etc) – FryGuy Oct 30 '09 at 1:20
I've used the print_r returning param quite a lot while I was coding PHP. However, I tended to write print_r( $foo, 1 );. It's quicker to type ;) And about this on I don't care much about readability as I find the name print_r not very descriptive either. – exhuma Jun 7 '10 at 7:03
echo

Not having return type

print

Have return type

print_r()

Outputs as formatted,

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.