Download the PHP package vietstars/client-detect without Composer
On this page you can find all versions of the php package vietstars/client-detect. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download vietstars/client-detect
More information about vietstars/client-detect
Files in vietstars/client-detect
Package client-detect
Short Description Desktop/mobile user agent parser with support for Laravel, based on Mobiledetect
License MIT
Homepage https://github.com/vietstars/client-detect
Informations about the package client-detect
ClientDetect
Installation
Install using composer:
Laravel (optional)
Add the service provider in config/app.php
:
And add the Client alias to config/app.php
:
Basic Usage
Start by creating an Client
instance (or use the Client
Facade if you are using Laravel):
If you want to parse user agents other than the current request in CLI scripts for example, you can use the setUserAgent
and setHttpHeaders
methods:
All of the original Mobile Detect methods are still available, check out some original examples at https://github.com/serbanghita/Mobile-Detect/wiki/Code-examples
Is?
Check for a certain property in the user agent.
Magic is-method
Magic method that does the same as the previous is()
method:
Mobile detection
Check for mobile device:
Match user agent
Search the user agent with a regular expression:
Additional Functionality
Accept languages
Get the browser's accept languages. Example:
Device name
Get the device name, if mobile. (iPhone, Nexus, AsusTablet, ...)
Operating system name
Get the operating system. (Ubuntu, Windows, OS X, ...)
Browser name
Get the browser name. (Chrome, IE, Safari, Firefox, ...)
Desktop detection
Check if the user is using a desktop device.
This checks if a user is not a mobile device, tablet or robot.
Phone detection
Check if the user is using a phone device.
Robot detection
Check if the user is a robot. This uses jaybizzle/crawler-detect to do the actual robot detection.
Robot name
Get the robot name.
Browser/platform version
MobileDetect recently added a version
method that can get the version number for components. To get the browser or platform version you can use:
Note, the version method is still in beta, so it might not return the correct result.
All versions of client-detect with dependencies
mobiledetect/mobiledetectlib Version ^2.7.6
jaybizzle/crawler-detect Version ^1.2