Advertisement
Guest User

Untitled

a guest
Sep 21st, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.13 KB | None | 0 0
  1. function isValidAge($age) {
  2.     if (is_numeric($age) && $age >= ACTUAL_AGE) {
  3.         return true;
  4.     }
  5.     return false;
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement