1.What are the difference between echo , print , print_r ?
else this 3 can we show output to a client in some other
way?
Answer Posted / madhavan
echo is a pure string statement, print is a formatted
function like C language by these two we cannot print whole
objects. We can print the whole object like array using print_r.
| Is This Answer Correct ? | 12 Yes | 18 No |
Post New Answer View All Answers
what is CURL?
What is the use of magic function in php?
What is use of preg_replace in php?
How the values are ordered in an array?
What is the difference between the include() and require() functions?
What is substr in php?
Is time a dependent variable?
What is the difference between explode() and split() functions?
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
What is pdo in php why use?
What is data abstraction in php?
What is compact function php?
Explain include(), include_once, require() and require_once?
How to swap two variables without using 3rd temp variable.
Tell me how would you declare a function that receives one parameter name hello?