当前位置:首页 > PHP教程 > php函数 > 列表

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

发布:smiling 来源: PHP粉丝网  添加日期:2014-08-17 16:04:47 浏览: 评论:0 
  1. function matchip($q){ 
  2. 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); 
  3. return $matches[0]; 
  4. $ipaddress = '201.103.2.2'
  5. $iperror ='262.3.6.6'
  6. $iptest = matchip( $ipaddress ); 
  7. //当我们给matchip 的值为$ipaddress输出为201.103.2.2 
  8. //当我们给matchip的函数值为$iperror时,输出值为 62.3.6.6 
  9.  代码如下 复制代码 
  10. if$iptest ) 
  11.  echo $iptest
  12. else 
  13.  echo 'phpfensi.com提示:你输的的ip地址有问题'

Tags: php 判断IP 正则表达式

分享到: