`
sq1228
  • 浏览: 80401 次
  • 性别: Icon_minigender_1
  • 来自: 宁波
社区版块
存档分类
最新评论

用php得到网卡mac

    博客分类:
  • PHP
阅读更多
<?php
$command = escapeshellcmd("nbtstat -A " . $_SERVER["REMOTE_ADDR"]);
if (strtolower(substr(PHP_OS, 0, 3)) == "win")
{
exec($command, $result);
array_pop($result);
print substr(array_pop($result), 18);
}
else
{
print "THE OS IS NOT WINDOWS 2000";
}
?>

 

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics