gpt4 book ai didi

php - 如何使用php获取客户端计算机的MAC ID

转载 作者:行者123 更新时间:2023-12-02 05:20:13 26 4
gpt4 key购买 nike

<分区>

要获取 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;
?>

但它会返回服务器机器的 MAC ID。我需要获取运行我的网页的 PC 的 MAC ID。

谁能帮帮我

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com