For printing out strings, there are echo, print and printf.
Explain the differences.

Answers were Sorted based on User's Feedback



For printing out strings, there are echo, print and printf. Explain the differences...

Answer / coder

echo is a language construct(You can see we don't use
paranthesis for echo).echo does not return any value. print
is also a language construct but it returns an integer
value. printf is a function..... echo is considered fast
than print

Is This Answer Correct ?    7 Yes 0 No

For printing out strings, there are echo, print and printf. Explain the differences...

Answer / hardik

echo is a language construct(You can see we don't use
paranthesis for echo).echo does not return any value. print
is also a language construct but it returns an integer
value. printf is a function..... echo is considered fast
than print and printf

Is This Answer Correct ?    4 Yes 0 No

For printing out strings, there are echo, print and printf. Explain the differences...

Answer / shilpa yogesh agrawal

echo, print and printf are used for printing strings but the
basic difference between them is: echo is the most primitive
of them, and just outputs the contents following the
construct to the screen. print is also a construct (so
parentheses are optional when calling it), but it returns
TRUE on successful output and FALSE if it was unable to
print out the string. And you can pass multiple parameters
to echo, like:

and it will output the string “Welcome Jack”

Whereas print does not take multiple parameters. It is also
generally argued that echo is faster, but usually the speed
advantage is negligible, and might not be there for future
versions of PHP.

printf� is a function, not a construct, and allows such
advantages as formatted output, but it’s the slowest way to
print out data out of echo, print and printf.

Is This Answer Correct ?    3 Yes 1 No

Post New Answer

More PHP Interview Questions

What is the use of Mbstring?

0 Answers  


What is the salary for php developer(Fresher)?

1 Answers  


i got 2 year backs in my MCA,i am 28 year guy, presently learning PHP, can i get the job & on facing the interview wht i will answer out for that?? (experience in as a 1.5yr System analyst after graduation)

0 Answers  


What does $globals mean?

0 Answers  


Is md5() is breakable if yes than how?

1 Answers  


How come the code works, but doesn’t for two-dimensional array of mine?

0 Answers  


What is serialization / object serialization ?

2 Answers  


Which of the delimiter is ASP style?

0 Answers  


Write a program to swap two numbers using php.

0 Answers  


What is difference between mysql_fetch_array and mysql_fetch_assoc?

0 Answers  


How should a model be structured in mvc?

0 Answers  


how to use particular city location in php?

1 Answers   TCS,


Categories