当前位置:首页 > PHP教程 > php应用 > 列表

ip网段转换程序,把ip地址转换成相对就的整数

发布:smiling 来源: PHP粉丝网  添加日期:2014-08-15 16:37:10 浏览: 评论:0 
  1. mysql_connect('localhost','root','root'); 
  2. mysql_select_db('dfd'); 
  3.  
  4. $array = file("ip.txt"); 
  5. foreach$array as $k  ) 
  6.  list ($ip,$s) = explode('/',$k); 
  7.  $ipe = str_replace('.0','.255',$ip); 
  8.  $ipint = iptoint($ip); 
  9.  $ipinte = iptoint($ipe);  
  10.  //echo iptoint($ip) .'-'.iptoint($ipe),'<br />';//开源代码phpfensi.com 
  11.  $s = array($ip,$ipe,$ipint,$ipinte); 
  12.  save($s); 
  13.  
  14. function iptoint($ip
  15.     $ipa=explode(".",$ip); 
  16.     $ipn=$ipa[0]*16777216+$ipa[1]*65536+$ipa[2]*256+$ipa[3]; 
  17.     return $ipn
  18.  
  19. function save($arr
  20.  ifcount$arr ) >3 ) 
  21.  { 
  22.   print_r($arr); 
  23.   mysql_query("insert into ip(ips教程,ipe,ipsint,ipeint)values('".$arr[0]."','".$arr[1]."','".$arr[2]."','".$arr[3]."')"or die(mysql_error()); 
  24.  } 

Tags: ip网段 ip地址 php整数

分享到: