flamecore/user-agent
Composer 安装命令:
composer require flamecore/user-agent
包简介
Simple browser detection for PHP
关键字:
README 文档
README
This library provides simple browser detection for PHP. It uses a simple and fast algorithm to recognize major browsers.
The UserAgent package was developed for our spam-protection system Gatekeeper.
Why you should use it
PHP provides a native function to detect the user browser: get_browser(). This function requires
the browscap.ini file which is 300KB+ in size. Loading and processing this file impacts the script performance. And sometimes,
the production server just doesn't provide browscap.ini.
Although get_browser() surely provides excellent detection results, in most cases a much simpler method can be just as effective.
The FlameCore UserAgent library has the advantage of being compact and easy to extend.
Usage
To make use of the API, include the vendor autoloader and use the classes:
namespace Acme\MyApplication; use FlameCore\UserAgent\UserAgent; require 'vendor/autoload.php'; // Create a user agent object $userAgent = UserAgent::createFromGlobal();
Then the parsed values can be retrieved using the getter methods:
$userAgent->getBrowserName(); // firefox $userAgent->getBrowserVersion(); // 3.6 $userAgent->getBrowserEngine(); // gecko $userAgent->getOperatingSystem(); // linux
When you create a UserAgent object, the current user agent string is used. You can specify another user agent string:
// Use another User Agent string $userAgent = UserAgent::create('msnbot/2.0b (+http://search.msn.com/msnbot.htm)'); $userAgent->getBrowserName(); // msnbot // Use current User Agent string $userAgent = UserAgent::create($_SERVER['HTTP_USER_AGENT']); // ... which is equivalent to: $userAgent = UserAgent::createFromGlobal();
Installation
Install via Composer
Create a file called composer.json in your project directory and put the following into it:
{
"require": {
"flamecore/user-agent": "dev-master"
}
}
Install Composer if you don't already have it present on your system:
$ curl -sS https://getcomposer.org/installer | php
Use Composer to download the vendor libraries and generate the vendor/autoload.php file:
$ php composer.phar install
Requirements
- You must have at least PHP version 5.4 installed on your system.
Contributors
If you want to contribute, please see the CONTRIBUTING file first.
Thanks to the contributors:
- Christian Neff (secondtruth)
flamecore/user-agent 适用场景与选型建议
flamecore/user-agent 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 97.36k 次下载、GitHub Stars 达 8, 最近一次更新时间为 2026 年 01 月 04 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「browser」 「user agent」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 flamecore/user-agent 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 flamecore/user-agent 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 flamecore/user-agent 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Give your JS App some Backbone with Models, Views, Collections, and Events.
Instrument headless chrome/chromium instances from php5.6
Selenium4 (WebDriver) driver for Mink framework
Custom laravel monolog logger for datadog logs management, both api and agent ways
The Message Submission Agent Diagnostics tool (msadiag) facilitates testing the compatibility of third party message submission agents.
Clusteer is a Puppeteer wrapper written for PHP, with the super-power of parallelizing pages across multiple browser instances.
统计信息
- 总下载量: 97.36k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 8
- 点击次数: 13
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: ISC
- 更新时间: 2026-01-04