Skip to content

Instantly share code, notes, and snippets.

@lifesign
Created September 25, 2014 08:50
Show Gist options
  • Save lifesign/6eab110215079d28d508 to your computer and use it in GitHub Desktop.
Save lifesign/6eab110215079d28d508 to your computer and use it in GitHub Desktop.
php get client mac
<?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