首页 > 开发 > PHP > 正文

PHP取得MAC地址

2024-05-04 22:58:59
字体:
来源:转载
供稿:网友

php取得mac地址
<?php

// 在linux下面取得mac地址

// 在windows下面需要外部mac.exe,

// mac . exe为返回mac地址的可执行程序,这个你们可以自己用delphi或者vc写 /

// 作者 hisun  <[email protected]>

// 任何疑问,请到 <a href="http://www.hisunweb.com" target="_blank">www.hisunweb.com</a> 留言,谢谢!

// 请尊重作者劳动成果

if ($_env["os"] == "windows_nt") {

    function getmac($nic = "lo")

    {

        $mac_exe_file = "e:/mac.exe";

        if ($nic == 'lo') return "000000000000";

        if ($nic != 'eth0') {

            return false;

        }

        $s1 = trim(shell_exec($mac_exe_file));

        return strtolower($s1);

    }

} else {

    function getmac($nic = "lo")

    {

        if ($nic == 'lo') return "000000000000";

        $s1 = shell_exec("/sbin/ifconfig " . escapeshellarg($nic) . " | head -1");

        if (strpos($s1, 'hwaddr') <= 1) {

            return false;

        } else {

            $a = explode('hwaddr', $s1);

            $s2 = str_replace(":", "", trim($a[1]));

            return strtolower($s2);

        }

    }

}

// echo "lo=>".getmac()."<br>";

echo "eth0=>" . getmac('eth0') . "<br>";

echo "eth1=>" . getmac('eth1') . "<br>";

 

?>
 

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表