作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在编写代码来保存用户的设备详细信息。但是当我使用 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/
我是一名优秀的程序员,十分优秀!