city . ', ' . $location->region . ', ' . $location->country; // 获取用户的操作系统 $user_agent = $_SERVER['HTTP_USER_AGENT']; $os = 'Unknown OS'; $os_array = array( '/windows nt 10/i' => 'Windows 10', '/windows nt 6.3/i' => 'Windows 8.1', '/windows nt 6.2/i' => 'Windows 8', '/windows nt 6.1/i' => 'Windows 7', '/windows nt 6.0/i' => 'Windows Vista', '/windows nt 5.2/i' => 'Windows Server 2003/XP x64', '/windows nt 5.1/i' => 'Windows XP', '/windows xp/i' => 'Windows XP', '/windows nt 5.0/i' => 'Windows 2000', '/windows me/i' => 'Windows ME', '/win98/i' => 'Windows 98', '/win95/i' => 'Windows 95', '/win16/i' => 'Windows 3.11', '/macintosh|mac os x/i' => 'Mac OS X', '/mac_powerpc/i' => 'Mac OS 9', '/linux/i' => 'Linux', '/ubuntu/i' => 'Ubuntu', '/iphone/i' => 'iPhone', '/ipod/i' => 'iPod', '/ipad/i' => 'iPad', '/android/i' => 'Android', '/blackberry/i' => 'BlackBerry', '/webos/i' => 'Mobile' ); foreach ($os_array as $regex => $value) { if (preg_match($regex, $user_agent)) { $os = $value; } } // 输出到页面 echo '代理 IP: ' . $ip . '
'; echo 'WebRTC: ' . $webrtc . '
'; echo '语言: ' . $language . '
'; echo '浏览器指纹: ' . $fingerprint . '
'; echo '位置: ' . $location . '
'; echo '操作系统: ' . $os . '
'; ?> PHP 获取用户代理 IP、WebRTC、语言、浏览器指纹、位置、操作系统

原文地址: https://www.cveoy.top/t/topic/m4MY 著作权归作者所有。请勿转载和采集!

免费AI点我,无需注册和登录