2011-03-16 105 views

回答

3

PHP本身不提供查找功能。您需要调用特定的plattform工具来获取信息,然后将其解压缩:

$text = `ifconfig`; 
preg_match('/([0-9a-f]{2}:){5}\w\w/i', $text, $mac); 
$mac = $mac[0]; 

在Windows上或许可以使用ipconfig一些选项。