adspace
What is the Diff. Between echo() and Print() in PHP?
Answer Posted / rajesh kumar vishwakarma
echo() is not actually a function (it is a language
construct) so you are not required to use parentheses with
it. In fact, if you want to pass more than one parameter to
echo, you must not enclose the parameters within parentheses.
print() is not actually a real function (it is a language
construct) so you are not required to use parentheses with
its argument list.
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.
3. 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";
| Is This Answer Correct ? | 9 Yes | 0 No |
Post New Answer View All Answers
What sized websites have you worked on in the past?
Write a program using while loop?
What is difference between static and final in php?
What is trait in php?
What is the current stable version of php?
sort term descripttion form, report and uery
how to detect a mobile device using php
hello all, I need some sample placement papers in lion bridge.. can anyone help me?
if you run the app program all vendor open items are cleared but is it possible to reverse the again again open items please tell me the answer
What is the current stable version of php? What advance thing in php7?
How to calculate the difference between two dates using php?
What does $_files means?
Explain me is it possible to destroy a cookie?
What is the difference between htmlentities() and htmlspecialchars()?
How can we extract string "pcds.co.in" from a string "https://info@pcds.co.in" using regular expression of php? More on reg can you explain