要獲取使用以下代碼的MAC ID。如何使用php獲取客戶端計算機MAC ID
<?php
ob_start(); // Turn on output buffering
system('ipconfig /all'); //Execute external program to display output
$mycom=ob_get_contents(); // Capture the output into a variable
ob_clean(); // Clean (erase) the output buffer
$findme = "Physical";
$pmac = strpos($mycom, $findme); // Find the position of Physical text
$mac=substr($mycom,($pmac+36),17); // Get Physical Address
echo $mac;
?>
但其返回服務器mechines MAC ID ..我需要得到在我的網頁運行PC的MAC ID。
誰能幫我
不能,客戶端瀏覽器和網絡服務器之間的所有IP通信都處於更高級別 – 2013-03-02 11:02:15