日期:2013-05-28  浏览次数:20485 次

PHP取得MAC地址
<?php

// 在linux下面取得MAC地址

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

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

// 作者 hisun  <hisun@hisunweb.com>

// 任何疑问,请到 <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>";

 

?>