Skip to content

Instantly share code, notes, and snippets.

@webkader
Last active August 29, 2015 14:24
Show Gist options
  • Save webkader/12d4430666cb8d924bec to your computer and use it in GitHub Desktop.
Save webkader/12d4430666cb8d924bec to your computer and use it in GitHub Desktop.
Check if a string is a valid positive integer
function isValidInteger($integer)
{
if (filter_var($integer, FILTER_VALIDATE_INT) && $integer > 0) {
return true;
} else {
return false;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment