取得客戶端的mac位址是非常有用的功能,因為它是客戶端的不可變的唯一標識,更換IP或清除本地記錄都是沒用的。
所以取得mac位址常會用到購買軟體時的一機一啟動碼,網站註冊每台機器只能註冊一次等等。
在電商系統開發中,常見的功能是:使用者在沒有登入的狀態下將商品加入購物車,登入後會自動將購物車資料同步上來。
對此的解決辦法我們通常都是使用COOKIE或SESSION解決即可。其實也可以用取得客戶端的mac位址作為唯一識別存入資料庫中,登入成功後再進行比對。 (建議學習:PHP視訊教學)
MAC位址用於網路中唯一標示一個網卡,一台裝置若有一或多張網卡,則每個網路卡都需要並且會有一個唯一的MAC位址 。
大數據時代的雲端很多時候都有用到這類方法。
網路查詢整理的程式碼如下:
<?php /** 获取网卡的MAC地址原码;目前支持WIN/LINUX系统 获取机器网卡的物理(MAC)地址 **/ class GetMacAddr{ var $return_array = array(); // 返回带有MAC地址的字串数组 var $mac_addr; function GetMacAddr($os_type){ switch ( strtolower($os_type) ){ case "linux": $this->forLinux(); break; case "solaris": break; case "unix": break; case "aix": break; default: $this->forWindows(); break; } $temp_array = array(); foreach ( $this->return_array as $value ){ if ( preg_match("/[0-9a-f][0-9a-f][:-]"."[0-9a-f][0-9a-f][:-]"."[0-9a-f][0-9a-f][:-]"."[0-9a-f][0-9a-f][:-]"."[0-9a-f][0-9a-f][:-]"."[0-9a-f][0-9a-f]/i",$value, $temp_array ) ){ $this->mac_addr = $temp_array[0]; break; } } unset($temp_array); return $this->mac_addr; } function forWindows(){ @exec("ipconfig /all", $this->return_array); if ( $this->return_array ) return $this->return_array; else{ $ipconfig = $_SERVER["WINDIR"]."\system32\ipconfig.exe"; if ( is_file($ipconfig) ) @exec($ipconfig." /all", $this->return_array); else @exec($_SERVER["WINDIR"]."\system\ipconfig.exe /all", $this->return_array); return $this->return_array; } } function forLinux(){ @exec("ifconfig -a", $this->return_array); return $this->return_array; } } //方法使用 $mac = new GetMacAddr(PHP_OS); echo $mac->mac_addr; ?>
以上是php用什麼方式取得mac位址的詳細內容。更多資訊請關注PHP中文網其他相關文章!