ob_start();system('ipconfig /all'); $mycom=ob_get_contents(); // Capture the output into a variableob_clean(); $findme = "Physical";$pos = strpos($mycom, $findme);$macp=substr($mycom,($pos+36),17);echo "MAC :".$macp; |
Linux
<?phpecho "MAC :";system("/sbin/ip addr|/bin/grep link/ether | /bin/awk '{print $2}'"); ?>
0 Komentar