Skip to content

Instantly share code, notes, and snippets.

@RajeshPatadiya
Forked from kheniparth/MACaddressPHP
Created June 20, 2017 04:27
Show Gist options
  • Save RajeshPatadiya/9dab56124b0c1ad1c3c63190165c1a35 to your computer and use it in GitHub Desktop.
Save RajeshPatadiya/9dab56124b0c1ad1c3c63190165c1a35 to your computer and use it in GitHub Desktop.
How to find MAC address of your visitor using PHP
<?php
ob_start();
system('ipconfig /all');
$mycom=ob_get_contents();
ob_clean();
$findme = "Physical";
$pmac = strpos($mycom, $findme);
$mac=substr($mycom,($pmac+36),17);
echo $mac;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment