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代码的主要内容,如果未能解决你的问题,请参考以下文章