window系统上用PHP获取本地物理IP代码

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了window系统上用PHP获取本地物理IP代码相关的知识,希望对你有一定的参考价值。

<?php
$res=system("ipconfig -all");
$contents=trim(ob_get_clean());
$contents=str_replace("\r\n","",$contents);

$contents=explode("   ",$contents);
foreach($contents as $k=>&$v)
{
    
    $pre=substr($v,0,8);
    if($pre=="物理地址")
    {
        $ip=substr($v,36);
        break;
    }
}
var_dump($ip);
?>

 

以上是关于window系统上用PHP获取本地物理IP代码的主要内容,如果未能解决你的问题,请参考以下文章

如何使用php获取客户端的本地IP?

PHP如何获取系统的本地IP

php获取客户端公网ip代码

在php中获取用户IP [重复]

PHP获取MAC地址的函数代码

用javaScript怎么样获取用户本地的ip地址?