nox-it/yii2-nox-user-agent-parser
最新稳定版本:2.0.0
Composer 安装命令:
composer require nox-it/yii2-nox-user-agent-parser
包简介
Yii2 UserAgent Parser
README 文档
README
A simple streamlined PHP user-agent parser for Yii Framework 2.
Installation
The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist nyx-solutions/yii2-nyx-user-agent-parser "*"
or add
"nyx-solutions/yii2-nyx-user-agent-parser": "*"
to the require section of your composer.json file.
Usage
Statically
use nyx\components\http\userAgent\Parser; $userAgent = UserAgentParser::parse(); // or UserAgentParser::parse($ua); $userAgent->ua; // [Searched UserAgent] $userAgent->successfullyParsed; // [Has UserAgent Results] $userAgent->platform; // [Detected Platform] $userAgent->browser; // [Detected Browser] $userAgent->version; // [Detected Browser Version]
As Object
use nyx\components\http\userAgent\Parser; $userAgent = new UserAgentParser(); $userAgent->ua; // [Searched UserAgent] $userAgent->successfullyParsed; // [Has UserAgent Results] $userAgent->platform; // [Detected Platform] $userAgent->browser; // [Detected Browser] $userAgent->version; // [Detected Browser Version]
Currently Detected Platforms
- Desktop
- Windows
- Linux
- Macintosh
- Chrome OS
- Mobile
- Android
- iPhone
- iPad / iPod Touch
- Windows Phone OS
- Kindle
- Kindle Fire
- BlackBerry
- Playbook
- Tizen
- Console
- Nintendo 3DS
- New Nintendo 3DS
- Nintendo Wii
- Nintendo WiiU
- PlayStation 3
- PlayStation 4
- PlayStation Vita
- Xbox 360
- Xbox One
Currently Detected Browsers
- Android Browser
- BlackBerry Browser
- Camino
- Kindle / Silk
- Firefox / Iceweasel
- Safari
- Internet Explorer
- IEMobile
- Chrome
- Opera
- Midori
- Vivaldi
- TizenBrowser
- Lynx
- Wget
- Curl
License
yii2-nyx-user-agent-parser is released under the BSD 3-Clause License. See the bundled LICENSE.md for details.
统计信息
- 总下载量: 32.67k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2
- 点击次数: 0
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: BSD-3-Clause
- 更新时间: 2016-05-26