gpt4 book ai didi

php - 如何从 php 用户代理中提取移动设备名称?

转载 作者:行者123 更新时间:2023-12-02 16:58:22 26 4
gpt4 key购买 nike

我正在编写代码来保存用户的设备详细信息。但是当我使用 PHP 用户代理时,它会返回整串信息。如何仅提取设备名称,例如仅提取型号名称,如 iPhone 6、Samsung Galaxy a5 等?

我尝试了一些正则表达式,但那会是很长的代码,我无法覆盖所有设备。

我得到了

Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_1 like Mac OS X) AppleWebKit/603.1.30 (KHTML, like Gecko) Version/10.0 Mobile/14E304 Safari/602.1

我只想要iPhone OS 10_3_1

最佳答案

用户代理的编写方式有很多种,很难仅通过正则表达式或简单的逻辑来提取信息。更好的方法是搜索您知道可能出现的给定设备的列表,例如来自 this answer ,但是这可能会使提取版本信息变得困难。

相反,我建议使用第三方库,例如 device-detector并使用以下内容:

use DeviceDetector\DeviceDetector;

// Fetch the user agent
$userAgent = $_SERVER['HTTP_USER_AGENT'];

// Create an instance of DeviceDetector
$dd = new DeviceDetector($userAgent);

// Extract any information you want
$osInfo = $dd->getOs();
$device = $dd->getDeviceName();
$brand = $dd->getBrandName();
$model = $dd->getModel();

关于php - 如何从 php 用户代理中提取移动设备名称?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55324620/

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