pharaoh PHP Client Detection: Detect the current HTTP request browser type

Recommend this page to a friend!
  Info   Documentation   View files (6)   Download .zip   Reputation   Support forum   Blog    
Last Updated Ratings Unique User Downloads Download Rankings
2020-02-27 (5 months ago) Not yet rated by the usersTotal: 65 All time: 9,705 This week: 251
Version License PHP version Categories
pharaoh-client 1.0.0Custom (specified...5HTTP, PHP 5, Wireless and Mobile
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

Picture of Moamen Eltouny
  Performance   Level  
Name: Moamen Eltouny <contact>
Classes: 11 packages by
Country: Egypt Egypt
Innovation award
Innovation award
Nominee: 5x

Details

[PHP] Pharaoh Client

Latest Stable Version Total Downloads License

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>

Client


##############################
# 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

  Files  
File Role Description
src (2 files)
composer.json Data Auxiliary data
composer.lock Data Auxiliary data
LICENSE Lic. License text
README.md Doc. Documentation

  Files  /  src  
File Role Description
   Agent.php Class Class source
   Client.php Class Class source

 Version Control Unique User Downloads Download Rankings  
 100%
Total:65
This week:0
All time:9,705
This week:251

For more information send a message to info at phpclasses dot org.