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.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…