Showing posts with label PHP Check for valid IP. Show all posts
Showing posts with label PHP Check for valid IP. Show all posts

Tuesday, 2 June 2015

PHP: Is IP Is it a valid IP?

<?php
function is_ip($text) {
 foreach (explode(".", $text) as $num) { if ($num > 255) return false; } return true;
}
?>

Usage
Although anything above 224.* and the private and loopback addresses are probably not useful, they're still IP'.