I\'m pretty sure the answer to this question is no, but in case there\'s some PHP guru
is it possible to write a function in a way where invalid arguments or non exi
If you simply add a default value to the parameter, you can skip it when calling the function. For example:
function empty($paramName = ""){ if(isset($paramName){ //Code here } else if(empty($paramName)){ //Code here } }