Regarding PHP functions, if you do not need a function to return a BOOLEAN or STRING, is there a difference between declaring a return on failure of a condition, rather than just letting the function automatically return?
For example,
Is there any internal difference between:
function check() {
if( 5 > $v ) {
die('yes');
}
}
function check() {
if( 5 > $v ) {
die('yes');
}
else {
return;
}
}
Obviously, they appear to do the same exact thing on failure of the 'IF' condition, but internally, is one better than the other in for sake of memory, security, usability, or overall best practice?
