php获取本机真实IP地址实例代码
程序员文章站
2024-04-02 08:03:10
本文实例为大家分享了php获取本机真实ip地址实例代码,供大家参考。
主要是获取操作系统为win2000/xp、win7的本机ip真实地址,和获取操作系统为linux类型...
本文实例为大家分享了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'; }
以上就是本文的全部内容,希望对大家的学习有所帮助。
上一篇: Java设计模式——工厂设计模式详解
下一篇: java网络编程基础知识介绍