Skip to content

Instantly share code, notes, and snippets.

@u01jmg3
Last active August 29, 2015 14:15
Show Gist options
  • Save u01jmg3/b420b0d9b16dffbe0846 to your computer and use it in GitHub Desktop.
Save u01jmg3/b420b0d9b16dffbe0846 to your computer and use it in GitHub Desktop.
Quick function to check if a value is blank including returning `0` as not blank.
/**
* @param Mixed
* @return Boolean
*/
function is_blank($value){
return empty($value) && !is_numeric($value);
}
//is_blank(0); //false
//is_blank(''); //true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment