2011-03-16 106 views

回答

3

PHP本身不提供查找功能。您需要調用特定的plattform工具來獲取信息,然後將其解壓縮:

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

在Windows上或許可以使用ipconfig一些選項。