Difference between echo and return in php? -


this confusing me ,what difference between echo , return, in functions

echo outputs content console or web browser.

example:

echo "hey, showing on screen!"; 

return returns value @ end of function or method.

example:

function my_function() {     return "always returns this"; }  echo my_function(); // displays "always returns this" 

Comments

Popular posts from this blog

django - How can I change user group without delete record -

java - Need to add SOAP security token -

java - EclipseLink JPA Object is not a known entity type -