Created
September 25, 2014 08:50
-
-
Save lifesign/6eab110215079d28d508 to your computer and use it in GitHub Desktop.
php get client mac
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function getClientMac($ip = '') | |
{ | |
if (empty($ip)) { | |
return; | |
} | |
$command = sprintf("cat /proc/net/arp | grep %s | awk '{print $4}'", $ip); | |
$fd = popen($command, 'r'); | |
$line = fgets($fd); | |
pclose($fd); | |
return trim($line); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment