PHP獲取MAC地址的函數代碼
更新時間:2011年09月11日 20:29:15 作者:
獲取網卡的MAC地址原碼;目前支持WIN/LINUX系統(tǒng) 獲取機器網卡的物理(MAC)地址
復制代碼 代碼如下:
<?php
/**
獲取網卡的MAC地址原碼;目前支持WIN/LINUX系統(tǒng)
獲取機器網卡的物理(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;
?>
相關文章
教你如何在CI框架中使用 .htaccess 隱藏url中index.php
CodeIgniter(以下簡稱"CI")是一款國外優(yōu)秀的PHP輕量級MVC框架,它支持PHP4和PHP5,是開發(fā)中小型可拓展性需求高的Web應用程序的利器。很多博客程序,開源的cms程序,都是采用CI進行的編寫。2014-06-06PHP swoole的process模塊創(chuàng)建和使用子進程操作示例
這篇文章主要介紹了PHP swoole的process模塊創(chuàng)建和使用子進程操作,結合實例形式分析了swoole的進程管理process模塊實現進程間通信相關操作技巧,需要的朋友可以參考下2020-03-03php session_start()關于Cannot send session cache limiter - hea
在windows下編程,當使用session_start()方法的時候,有時會報 session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /var/www/inpublisher/php1.php:1)這樣的錯誤2009-11-11