Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- - IP validator
- - Ensures an IP address is in the valid format of example 127.0.0.1
- $ip - The IP address to validate
- */
- function validateIP($ip) {
- if (filter_var($ip, FILTER_VALIDATE_IP))
- return true;
- else
- return false;
- }
Advertisement
Add Comment
Please, Sign In to add comment