我使用下面提到的php代码从客户端系统获取mac地址,它在我的本地系统(Windows操作系统)中运行良好。当我在Bigrock Cpanel上使用此代码时,它会显示空白页面。请澄清这个问题。
Example:
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;
答案 0 :(得分:0)
试试这个php代码:
<?php
ob_start();
system('/sbin/ifconfig -a');
$mycom=ob_get_contents();
ob_clean();
$findme = 'physique';
$pmac = strpos($mycom, $findme);
$mac=substr($mycom,($pmac+38),22);
echo "$mac\r";
?>
这在我的CentOS 6.9 linux服务器上运行得很好:
64/5236# php get-mac.php
00:1A:10:1F:0A:1E