What is the difference between these three?
return , echo and print keyword in PHP
function theBand($abc,$bac) {
return $abc;
echo $abc;
}
Both does the same, it does show or return me the value holding in the variable abc. Now return exists the function and echo continues. Apart from this is there anything specific on return keyword.