misterwangbo
(misterwangbo)
中级会员
 
中级会员
UID 26033
精华
2
积分 226
帖子 186
金钱 206 喜悦币
威望 20
人脉 0
阅读权限 30
注册 2004-2-8
状态 离线
|
用php得到网卡mac
<?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"; } ?> linux命令我不熟悉,熟悉的可以自己加上.
|
|