Possible Duplicate:
Reference: Comparing PHP's print and echo
Is there any major and fundamental difference between these two functions in PHP?
Is there any major and fundamental difference between these two functions in PHP? |
||||
|
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.
|
From: http://www.faqts.com/knowledge_base/view.phtml/aid/1/fid/40
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.
So, echo without parentheses can take multiple parameters, which get concatenated:
|
|||||||||||||
|
|
They are:
|
|||
|
|
|
As the PHP.net manual suggests, take a read of this discussion. One major difference is that
If you're looking to evaluate the outcome of an output statement (as below) use
|
|||||
|
|
The PHP manual pages for print and echo link to this document. |
|||
|
|
|
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 |
|||
|
|
|
I think print() is slower than echo. I like to use print() only for situations like:
|
|||
|
|