Home  >  Article  >  php教程  >  PHP判断IP匹配

PHP判断IP匹配

PHP中文网
PHP中文网Original
2016-05-25 17:09:131484browse

PHP代码

//判断IP格式
 function is_ip($gonten){
        $ip = explode(".",$gonten);
        for($i=0;$i<count($ip);$i++)
       {
              if($ip[$i]>255){
               return (0);
               }
        }
        return ereg("^[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}$",$gonten);
}

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:PHP获取系统型号Next article:PHP的AES加密类