Skip to content

Instantly share code, notes, and snippets.

@gwagroves
Created November 20, 2015 14:49
Show Gist options
  • Save gwagroves/2622842cb2d088e0a254 to your computer and use it in GitHub Desktop.
Save gwagroves/2622842cb2d088e0a254 to your computer and use it in GitHub Desktop.
<?php
function doTest($value) {
return $value === FALSE || is_null($value);
}
var_dump(doTest(''));
var_dump(doTest(0));
var_dump(doTest(null));
var_dump(doTest(FALSE));
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment