承接 browscap/browscap-php 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

browscap/browscap-php

Composer 安装命令:

composer require browscap/browscap-php

包简介

Standalone replacement for php's native get_browser() function

README 文档

README

This is a userland replacement for PHP's native get_browser() function, which is officially supported by the Browser Capabilities Project.

CI

Installation

Run the command below to install via Composer

composer require browscap/browscap-php 

Then you may identify the current user agent this way:

$cache = new \MatthiasMullie\Scrapbook\Psr16\SimpleCache($doctrineFileCache); // or maybe any other PSR-16 compatible caches
$logger = new \Monolog\Logger('name'); // or maybe any other PSR-3 compatible logger

$browscap = new \BrowscapPHP\Browscap($cache, $logger);
$info = $browscap->getBrowser();

Recommended Setup

Before you can start, you have to run the browscap:fetch command to download the browscap.ini file, and use the browscap:convert command to convert it into a cache. There are two ways.

a. Download the file and convert it in two steps. The downloaded file will be stored in a local file, but there is no check if the remote file has changed. If your cache gets corrupted you only need to rerun the convert command.

vendor/bin/browscap-php browscap:fetch
vendor/bin/browscap-php browscap:convert

b. Download the file and convert it in one step. The downloaded file will not be stored in a local file, but there is a check if the remote file has changed. If your cache gets corrupted you have clean the cache and restart the process.

vendor/bin/browscap-php browscap:update

If you want to autoupdate the used cache, we recommend a separate cron job that calls the command listed above.

BC breaks in version 7.0.x

 - [BC] BrowscapPHP\Command\UpdateCommand was marked "@internal"
 - [BC] BrowscapPHP\Command\FetchCommand was marked "@internal"
 - [BC] BrowscapPHP\Command\ConvertCommand was marked "@internal"
 - [BC] BrowscapPHP\Command\CheckUpdateCommand was marked "@internal"
 - [BC] BrowscapPHP\Command\ParserCommand was marked "@internal"
 - [BC] BrowscapPHP\Helper\Filesystem was marked "@internal"

Setup Examples

$fileCache = new \League\Flysystem\Local\LocalFilesystemAdapter($cacheDir);
$filesystem = new \League\Flysystem\Filesystem($fileCache);
$cache = new \MatthiasMullie\Scrapbook\Psr16\SimpleCache(
    new \MatthiasMullie\Scrapbook\Adapters\Flysystem($filesystem)
);

$logger = new \Monolog\Logger('name');

$bc = new \BrowscapPHP\Browscap($cache, $logger);
$result = $bc->getBrowser();

NOTE: You may use any other cache which implements the PSR-16 interface.

Using the full browscap.ini file

$bc = new \BrowscapPHP\BrowscapUpdater();
$bc->update(\BrowscapPHP\Helper\IniLoaderInterface::PHP_INI_FULL);

Setting up a proxy configuration

If you are behind a proxy or need a spcific configuration, you have to set up a client instance. See into the Guzzle documentation for more information about this.

$proxyConfig = [
    'proxy' => [
        'http'  => 'tcp://localhost:8125',
        'https' => 'tcp://localhost:8124',
    ],
];
$client = new \GuzzleHttp\Client($proxyConfig);
$bcu = new BrowscapUpdater();
$bcu->setClient($client);

Usage Examples

Taking the user agent from the global $_SERVER variable

$bc = new \BrowscapPHP\Browscap();
$current_browser = $bc->getBrowser();

Using a sample useragent

$bc = new \BrowscapPHP\Browscap($cache, $logger);
$current_browser = $bc->getBrowser($the_user_agent);

the CLI commands

NOTE: If you don't want to use a file cache, you could not use the CLI commands. It is not possible to use other caches there at the moment. NOTE: Each operation (fetch, update, check-update) which fetches data from the remote host browscap.org may run into the rate limit of that site. If this happens an Exception is thrown.

Each CLI command returns zero if everything went fine.

check-update

If you only want to check if a new version of the browscap.ini is available, you can use the check-update command.

vendor/bin/browscap-php browscap:check-update

options

  • cache (optional) the relative path to your cache directory

return codes

  • 1: no cached version found
  • 2: no new version availble
  • 3: an error occured while checking the cached version
  • 4: an error occured while fetching the remote version
  • 5: an other error occured

fetch

The fetch command downloads an ini file from browscap.org.

vendor/bin/browscap-php browscap:fetch

options

  • cache (optional) the relative path to your cache directory
  • remote-file (optional) only required if you dont want to download the standerd file, possible values are
    • PHP_BrowscapINI downloads the standard file (default)
    • Lite_PHP_BrowscapINI downloads the lite file
    • Full_PHP_BrowscapINI downloads the full file
  • file (optional) the relative path to the local file where the remote content is stored

return codes

  • 3: an error occured while checking the cached version
  • 9: an error occured while fetching the remote data
  • 10: an other error occured

convert

The convert command reads a local stored browscap.ini file and writes the contents into a cache.

vendor/bin/browscap-php browscap:convert

options

  • file (optional) the relative path to the local file where the remote content is stored, this should be the same file as in the fetch command
  • cache (optional) the relative path to your cache directory

return codes

  • 6: the name of the file to convert is missing
  • 7: the file to convert is not available or not readable
  • 8: an other error occured while reading the file

update

The update command downloads an ini file from browscap.org and writes the contents into a cache. No local files are created.

vendor/bin/browscap-php browscap:update

options

  • remote-file(optional) only required if you dont want to download the standerd file, possible values are
    • PHP_BrowscapINI downloads the standard file (default)
    • Lite_PHP_BrowscapINI downloads the lite file
    • Full_PHP_BrowscapINI downloads the full file
  • cache (optional) the relative path to your cache directory

return codes

  • 3: an error occured while checking the cached version
  • 9: an error occured while fetching the remote data
  • 10: an other error occured

parse

The parse command parses a given user agent and writes the result to the console.

vendor/bin/browscap-php browscap:parse

options

  • user-agent (required) the user agent which should be parsed
  • cache (optional) the relative path to your cache directory

return codes

  • 11: an other error occured while parsing the useragent

CLI Examples

Updating the cache using the full browscap.ini file

Note: Both ways to create/update the cache will use the standard mode file as default. If you want more detailed information you may change this with the remote-file option. Please use the help function this parameter.

vendor/bin/browscap-php browscap:update --remote-file Full_PHP_BrowscapINI

Updating a custom cache dir

Each operation expect fetch uses a cache inside the resources directory inside the project. If you update this library with composer, the cache is cleared also. If you want to avoid this and want to set your own cache folder, you can use the cache option. If you do this, you have to set a Cache Instance for this this path.

vendor/bin/browscap-php browscap:update --cache ./browscap-cache

Issues and feature requests

Please report your issues and ask for new features on the GitHub Issue Tracker at https://github.com/browscap/browscap-php/issues

Please report incorrectly identified User Agents and browser detect in the browscap.ini file here: https://github.com/browscap/browscap/issues

browscap/browscap-php 适用场景与选型建议

browscap/browscap-php 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 4.01M 次下载、GitHub Stars 达 442, 最近一次更新时间为 2013 年 01 月 17 日, 在 PHP 生态内属于活跃度较高的组件。

它主要适用于以下技术方向: 「browser」 「get_browser」 「capabilities」 「user agent」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。

我们在过去多个企业项目中使用过 browscap/browscap-php 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。

围绕 browscap/browscap-php 我们能提供哪些服务?
定制开发 / 二次开发

基于 browscap/browscap-php 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

  • 总下载量: 4.01M
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 447
  • 点击次数: 43
  • 依赖项目数: 27
  • 推荐数: 5

GitHub 信息

  • Stars: 442
  • Watchers: 28
  • Forks: 83
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2013-01-17