PHP判断IP格式的函数

作者:袖梨 2022-07-02

function is_ip($str) {
if(!strcmp(long2ip(sprintf("%u",ip2long($ip))),$ip)) return 1;
else return 0;
}
或者(老版本用)
function is_ip($str) {
$ip = explode(".", $str);
if (count($ip)<4 || count($ip)>4) return 0;
foreach($ip as $ip_addr) {
if ( !is_numeric($ip_addr) ) return 0;
if ( $ip_addr<0 || $ip_addr>255 ) return 0;
}
return 1;
}
假如简单的判定格式a.b.c.d而不考虑abcd的值的话:
return (preg_match("/^([0-9]{1,3}.){3}[0-9]{1,3}$/is", $str));
不过假如需要真的ip的时候就不好玩了

相关文章

精彩推荐