php获取本机真实IP地址实例代码
发布:smiling 来源: PHP粉丝网 添加日期:2019-10-20 19:43:29 浏览: 评论:0
本文实例为大家分享了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 (!emptyempty($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 (!emptyempty($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';
- }
以上就是本文的全部内容,希望对大家的学习有所帮助。
Tags: php本机真实IP
- 上一篇:PHP记录页面停留时间的方法
- 下一篇:PHP全局变量与超级全局变量区别分析
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)