Created
September 10, 2015 13:43
-
-
Save TheOpenDevProject/382b888a2f441a836dad to your computer and use it in GitHub Desktop.
Full Of Life
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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