Let's say for an instance I have this function:
function isValid($premise){
if($premise == 'foo')
{
return true;
}
return false;
}
As you can see the else statement was omitted, else it was immediately followed by the return statement. Why do some people omit them? Is it a bad programming practice?
returnstatements, without them omitting else will not produce the same results. And for that I think it is good practice to include the else statement just to be clear on what you intend to do. – vikki Jul 10 '12 at 5:18