复代码码 代码如下:
/**
현재 WIN/LINUX 시스템을 지원하는 네트워크 카드의 원래 MAC 주소를 가져옵니다.
기기 네트워크 카드의 물리적(MAC) 주소를 가져옵니다.
**/
class GetMacAddr{
var $return_array = array(); // 返回带有MAC地址字串数组
var $mac_addr;
function GetMacAddr($os_type){
스위치( strtolower($os_type) ){
case "linux":
$this->forLinux();
휴식;
케이스 "solaris":
break;
case "unix":
break;
케이스 "aix":
break;
기본값:
$this->forWindows();
휴식;
}
$temp_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];
휴식;
}
}
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"]."system32ipconfig.exe";
if ( is_file($ipconfig) )
@exec($ipconfig." /all", $this->return_array);
else
@exec($_SERVER["WINDIR"]."systemipconfig.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;
?>
以上就介绍了申请email地址 PHP获取MAC地址的函数代码,包括了申请email地址方箹,希望对PHP教程有兴趣的朋友有所帮助。