Skip to content

Instantly share code, notes, and snippets.

@TheOpenDevProject
Created September 10, 2015 13:43
Show Gist options
  • Save TheOpenDevProject/382b888a2f441a836dad to your computer and use it in GitHub Desktop.
Save TheOpenDevProject/382b888a2f441a836dad to your computer and use it in GitHub Desktop.
Full Of Life
private function IsNullOrEmpty(&$var){
if( (isset($var)) && ($var !== null) && (!empty($var))){
return true;
}else{
return false;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment