Ratings | | Unique User Downloads | | Download Rankings |
Not yet rated by the users | | Total: 81 | | All time: 9,969 This week: 190 |
|
Description | | Author |
This class can detect the current HTTP request browser type
It parses the current HTTP request user agent to detect relevant details. Currently it can determine:
- If the browser is on a mobile phone, tablet or on a computer
- The operating system running on the browser
- IP address
- Supported languages | |
 |
|
Innovation award
 Nominee: 20x |
|
Details
[PHP] Pharaoh Client

Pharaoh-Client provides a quick and easy controlling of Client Information [Visitor]
Install
Install the latest version using Composer:
$ composer require raggitech/pharaoh-client
then include the vendor autoload file.
Usage
Getting the Instances:
$client = \Pharaoh\Client::getInstance();
<a name="client"></a>
##############################
# Bot
##############################
// check if it's a bot
var_dump($client->isBot());
// get the bot's name
echo $client->bot();
##############################
# Main Information
##############################
// get user agent
echo $client->agent;
// get user ip
echo $client->ip;
// get referer
echo $client->referer;
// get user languages list
echo $client->languages;
// get user language
echo $client->language;
// get user language's variant
echo $client->variant;
##############################
# Device
##############################
$device = $client->device;
// Browser Engine name
echo $device->name; // WebKit
// Browser (name, version)
echo $device->browser->name; // Chrome
echo $device->browser->version; // 77.0.3865.120
// Platform (name, version)
echo $device->platform->name; // Windows
echo $device->platform->version; // 10.0
// Device Type
var_dump($device->isDesktop); // true
// if it's a phone
if($device->isPhone){
var_dump(
$device->isMobile, // true
$device->isTablet, // false
$device->isiOS, // true
$device->isAndroid, // false
);
}
License
MIT license
|
Applications that use this package |
|
No pages of applications that use this class were specified.
If you know an application of this package, send a message to the author to add a link here.