Skip to content

Instantly share code, notes, and snippets.

@locvfx
Created April 21, 2018 14:31
Show Gist options
  • Save locvfx/65261906e9ef50b580921f1b69515add to your computer and use it in GitHub Desktop.
Save locvfx/65261906e9ef50b580921f1b69515add to your computer and use it in GitHub Desktop.
PHP - Check variable's type
if (is_numeric($param)) {
//TRUE
}
else {
//FALSE
}
if (!empty($param)) {
//not empty
}
else {
//empty or NULL
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment