'Windows 10/11', '/windows nt 6.3/i' => 'Windows 8.1', '/windows nt 6.2/i' => 'Windows 8', '/windows nt 6.1/i' => 'Windows 7', '/macintosh|mac os x/i' => 'Mac OS X', '/android/i' => 'Android', '/iphone|ipad/i' => 'iOS', '/linux/i' => 'Linux' ]; foreach ($os_array as $regex => $value) { if (preg_match($regex, $user_agent)) { $os = $value; break; } } // 3. Nhận diện Trình duyệt (Browser) $browser = "Unknown Browser"; $browser_array = [ '/edg/i' => 'Edge', '/chrome/i' => 'Chrome', '/firefox/i' => 'Firefox', '/safari/i' => 'Safari', '/opera/i' => 'Opera', '/msie/i' => 'Internet Explorer' ]; foreach ($browser_array as $regex => $value) { if (preg_match($regex, $user_agent)) { $browser = $value; break; } } // 4. Lấy quốc gia qua API (Dùng ip-api.com rất ổn định) $country = "Unknown"; try { $api_url = "http://ip-api.com/json/" . $user_ip; $api_data = @file_get_contents($api_url); if ($api_data) { $json = json_decode($api_data); if ($json && $json->status === 'success') { $country = $json->country; } } } catch (Exception $e) { $country = "Unknown"; } ?>