Is IP

Is it a valid IP?

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'.


Comments

Add your comment