Cara Cek Mac Address Menggunakan PHP

Windows

ob_start();
system('ipconfig /all');
$mycom=ob_get_contents(); // Capture the output into a variable
ob_clean();
$findme = "Physical";
$pos = strpos($mycom, $findme);
$macp=substr($mycom,($pos+36),17);
echo "MAC :".$macp;

Linux


<?php
echo "MAC :";
system("/sbin/ip addr|/bin/grep link/ether | /bin/awk '{print $2}'");
?>
Latest
Previous
Next Post »
0 Komentar