Home > php教程 > php手册 > 看看PHP如何得到网卡的MAC:

看看PHP如何得到网卡的MAC:

WBOY
Release: 2016-06-21 09:11:51
Original
1047 people have browsed it

@exec("ipconfig /all",$array);
for($Tmpa;$Tmpa    if(eregi("Physical",$array[$Tmpa])){
        $getstr=explode(":",$array[$Tmpa]);
        echo $getstr[1];
    }
}
?>


我测试了可以用



Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template