多くの友人は、php または js を使用してクライアントの MAC アドレスを取得したいと考えていますが、ネチズンの許可設定が非常に低い場合を除いて、これは不可能であると言えます。
クラスGetMacAddr{
var $return_array = array() // MAC アドレスを含む文字列配列を返します
;
var $mac_addr;
関数 GetMacAddr($os_type){
switch ( strto lower($os_type) ){
ケース「Linux」:
ケース「ソラリス」:
ケース「UNIX」:
ケース「aix」:
デフォルト:
$temp_array = array();
foreach ( $this->return_array as $value ){
もし (
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 ) ){
unset($temp_array);
return $this->mac_addr;
function forWindows(){
@exec("ipconfig /all", $this->return_array);
if ( $this->return_array )
$this->return_array を返す;
その他{
$ipconfig = $_SERVER["WINDIR"]."system32ipconfig.exe";
if ( is_file($ipconfig) )
@exec($ipconfig." /all", $this->return_array);
その他
@exec($_SERVER["WINDIR"]."systemipconfig.exe /all", $this->return_array);
$this->return_array を返す;
}
}
Linux 用関数(){
@exec("ifconfig -a", $this->return_array);
$this->return_array を返す;
}
}
// 使用方法
//$mac = new GetMacAddr(PHP_OS);
//エコー $mac->mac_addr;