当前位置:Gxlcms > PHP教程 > php判断IP是否合法正则表达式代码

php判断IP是否合法正则表达式代码

时间:2021-07-01 10:21:17 帮助过:1人阅读

function matchip($q){ 
preg_match('/((25[0-5])|(2[0-4]d)|(1dd)|([1-9]d)|d)(.((25[0-5])|(2[0-4]d)|(1dd)|([1-9]d)|d)){3}/', $q, $matches); 
return $matches[0]; 
} 
$ipaddress = '201.103.2.2'; 
$iperror ='262.3.6.6'; 
$iptest = matchip( $ipaddress ); 
//当我们给matchip 的值为$ipaddress
输出为201.103.2.2 //当我们给matchip的函数值为$iperror时,输出值为 62.3.6.6 代码如下 if( $iptest ) { echo $iptest; } else { echo 'phpfensi.com提示:你输的的ip地址有问题'; }

人气教程排行