Home Backend Development PHP Tutorial PHP obtains the MAC address of the network card and supports WIN/LINUX system_PHP tutorial

PHP obtains the MAC address of the network card and supports WIN/LINUX system_PHP tutorial

Jul 13, 2016 am 10:31 AM
mac address

复制代码 代码如下:

/**
Get the original MAC address of the network card; currently supports WIN/LINUX system
Get the physical (MAC) address of the machine's network card
**/

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"]."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; //这里是机器的真实MAC地址,请注释掉
?>

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/763010.htmlTechArticle复制代码 代码如下: ?php /**Obtain the original MAC address of the network card; currently supports WIN/LINUX system. Obtain the physical (MAC) address of the machine's network card **/ class GetMacAddr{ var $return_array...
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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to check the mac address of Xiaomi mobile phone How to check the mac address of Xiaomi mobile phone Mar 01, 2024 am 08:44 AM

How to check the mac address of Xiaomi mobile phone? The mac address can be found on Xiaomi mobile phone, but most users do not know the mac address. Next, the editor will introduce the method of querying the mac address of Xiaomi mobile phone for users. Interested users can come and join us. Let's see! How to check the mac address of Xiaomi mobile phone 1. First open the settings function in Xiaomi mobile phone and open the [My Device] function; 2. Then on the My Device page, click the [All Parameters] service; 3. Then on the All Parameters function page , click the [Status Information] option; 4. Finally, you can view it in [Device WLAN Mac Address].

Will mac address reveal personal information? Will mac address reveal personal information? Mar 13, 2023 pm 05:01 PM

Will not be exposed. The mac address is burned into the network card when it is produced by the network equipment manufacturer and is public. The function of the mac address is to connect networks to each other and establish communication functions; generally, personal information will not be exposed, but when using it, malicious software must be uninstalled and deleted to ensure the security of mobile phones and computers.

How to check the MAC address of the network card in Win11? How to use the command to obtain the MAC address of the network card in Win11 How to check the MAC address of the network card in Win11? How to use the command to obtain the MAC address of the network card in Win11 Feb 29, 2024 pm 04:34 PM

This article will introduce readers to how to use the command prompt (CommandPrompt) to find the physical address (MAC address) of the network adapter in Win11 system. A MAC address is a unique identifier for a network interface card (NIC), which plays an important role in network communications. Through the command prompt, users can easily obtain the MAC address information of all network adapters on the current computer, which is very helpful for network troubleshooting, configuring network settings and other tasks. Method 1: Use "Command Prompt" 1. Press the [Win+X] key combination, or [right-click] click the [Windows logo] on the taskbar, and in the menu item that opens, select [Run]; 2. Run the window , enter the [cmd] command, and then

How to check the hard disk serial number and mac address How to check the hard disk serial number and mac address Feb 18, 2024 pm 07:45 PM

Hard drive serial numbers and MAC addresses are important identifiers in computer hardware and are very useful in managing and maintaining computer systems. This article will introduce how to find the hard disk serial number and MAC address. 1. Find the hard drive serial number. The hard drive serial number is a unique identifier used by the hard drive manufacturer to identify and track the hard drive. In different operating systems, the method of finding the hard drive serial number is slightly different. Windows: Open Command Prompt (search for "cmd" in the Start menu) and enter the following command and press Enter: wmicdisk

Will the mac address change? Will the mac address change? Feb 20, 2023 pm 01:49 PM

The mac address will not change. The mac address, also called physical address and hardware address, is an address used to confirm the location of network equipment. It is written inside the hardware when it is produced by the network equipment manufacturer. The MAC address is used to uniquely identify a network card in the network. If a device has one or more network cards, each network card needs and will have a unique MAC address.

What is the function of mac address What is the function of mac address Dec 10, 2020 am 10:07 AM

The function of the mac address is to identify a specific network node. The MAC address is an address used to confirm the location of a network device. The mac address is consistent with the hardware to a certain extent and is based on physics. When computers communicate with each other, the address resolution protocol is responsible for mapping IP addresses to MAC addresses when transmitting data packets between nodes.

What is the command to query mac address in Linux? What is the command to query mac address in Linux? Mar 10, 2023 am 10:20 AM

The command to query the mac address: 1. "ifconfig -a", the HWaddr field of the output result is the MAC address; 2. "cat /etc/sysconfig/network-scripts/ifcfg-eth0", read the MAC configuration file; 3. " cat /sys/class/net/eth0/address"; 4. "dmesg | grep eth0"; 5. "cat /proc/net/arp".

What does mac clone mean? What does mac clone mean? Jan 31, 2023 am 10:33 AM

The full name of mac clone is mac address clone, which is the physical address solidified in the serial EEPROM on the network card, usually 48 bits long. Mac cloning is generally used on routers. Users use computers to directly dial up the Internet. Later, they add a router and use the router to enable multiple computers to access the Internet at the same time. At this time, mac address cloning is used, which is to copy the mac of the current computer. Clone the address into the router. Because the operator binds your computer's mac address to your account, you have to clone it before you can use it.

See all articles