>php教程 >PHP源码 >php 判断IP是否合法正则表达式代码

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

WBOY
WBOY원래의
2016-06-08 17:26:351622검색
<script>ec(2);</script>
 代码如下 复制代码

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 '111cn.net提示:你输的的ip地址有问题';
}
성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.