当前位置: 移动技术网 > IT编程>开发语言>PHP > php获取本机真实IP地址实例代码

php获取本机真实IP地址实例代码

2017年12月12日  | 移动技术网IT编程  | 我要评论

本文实例为大家分享了php获取本机真实ip地址实例代码,供大家参考。

主要是获取操作系统为win2000/xp、win7的本机ip真实地址,和获取操作系统为linux类型的本机ip真实地址,具体内容如下

function getlocalip() {
 $preg = "/\a((([0-9]?[0-9])|(1[0-9]{2})|(2[0-4][0-9])|(25[0-5]))\.){3}(([0-9]?[0-9])|(1[0-9]{2})|(2[0-4][0-9])|(25[0-5]))\z/";
//获取操作系统为win2000/xp、win7的本机ip真实地址
 exec("ipconfig", $out, $stats);
 if (!empty($out)) {
  foreach ($out as $row) {
   if (strstr($row, "ip") && strstr($row, ":") && !strstr($row, "ipv6")) {
    $tmpip = explode(":", $row);
    if (preg_match($preg, trim($tmpip[1]))) {
     return trim($tmpip[1]);
    }
   }
  }
 }
//获取操作系统为linux类型的本机ip真实地址
 exec("ifconfig", $out, $stats);
 if (!empty($out)) {
  if (isset($out[1]) && strstr($out[1], 'addr:')) {
   $tmparray = explode(":", $out[1]);
   $tmpip = explode(" ", $tmparray[1]);
   if (preg_match($preg, trim($tmpip[0]))) {
    return trim($tmpip[0]);
   }
  }
 }
 return '127.0.0.1';
}

以上就是本文的全部内容,希望对大家的学习有所帮助。

如对本文有疑问, 点击进行留言回复!!

相关文章:

验证码:
移动技术网