PHP Classes

PHP User Agent Parser: Parse the user agent string to get browser details

Recommend this page to a friend!
  Info   View files Example   View files View files (9)   DownloadInstall with Composer Download .zip   Reputation   Support forum   Blog    
Last Updated Ratings Unique User Downloads Download Rankings
2022-10-21 (1 month ago) RSS 2.0 feedStarStarStarStar 62%Total: 445 This week: 7All time: 6,189 This week: 106Up
Version License PHP version Categories
php-useragent 1.0.2Custom (specified...5HTTP, PHP 5, Parsers
Description Author

This class can parse the user agent string to get browser details.

It takes the user agent string of the browser eventually accessing the current site and parses it to extract several details about the user browser and computer.

The class stores the browser details in variable for the browser name and version, operating system name and version, and mobile device name if it is a mobile browser.

Picture of Ahmed Saad
  Performance   Level  
Name: Ahmed Saad <contact>
Classes: 10 packages by
Country: Egypt Egypt
Innovation award
Innovation award
Nominee: 7x

Details

PHP-UserAgent

Screen Shoot

>UserAgent Class Analayse client user agent string by default, or a given user agent string and gives you very helpfull information about user system and browser.

License

>This Work is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License. > Link

Copyright

>@author __Ahmed Saad__ <a7mad.sa3d.2014@gmail.com> 2013-2016

Version

> 2.0.0

Updated

> 31 Jul 2016

Features:

  1. Get System and Browser Information about your Visitor as the following: 1. Smart Phones Mobile Detecting. 2. System Archetecture ( 32bit Or 64bit ). 3. CPU Brand Detecting ( `Intel`, `AMD`, `PPC` ). 4. Platform Detecting for Desktop OS and Smart Phone OS. 5. Optimization : Client UserAgent Only Processed Once 6. Read Only Access Properties .

Usage:

> UserAgent Class Uses namespace, and autoload will automatically load class when called.

>> include or requireuser_agent.php* file >> >> <?php >> require_once('core/user_agent.php'); >> use Core\UserAgent; >> $instance = new UserAgent(); >> >> just require or include Suppliedautoload.php* file which will load any class >> >> <?php >> require_once('core/autoload.php'); >> use Core\UserAgent; >> $instance = new UserAgent();

$instance = new UserAgent():

>

// Current Client Systen
$instance = new UserAgent();

>

// Custom UserAgent String
$instance = new UserAgent( 'custom user agent string here' );

$instance->string:

> __String__ useragent string .

$instance->systemString:

> __String__ system string .

$instance->browserName:

> __String__ Browser Name __Google Chrome, Mozilla Firefox, Safari, Opera, Internet Explorer, Android Browser__ .

$instance->browserVersion:

> __String__ Browser Version .

$instance->osPlatform:

> __String__ OS Platform Name .

$instance->osVersion:

> __String__ OS Version .

$instance->osShortVersion:

> __String__ OS Short Version .

$instance->osArch:

> __String__ OS bit Architecture __32 OR 64__ .

$instance->isIntel:

> __Boolean__ Detect if System CPU is Intel .

$instance->isAMD:

> __Boolean__ Detect if System CPU is AMD .

$instance->isPPC:

> __Boolean__ Detect if System CPU is PowerPC .

$instance->isMobile:

> __Boolean__ Detect if client device is Mobile Phone Or Tablet .

$instance->mobileName:

> __String__ Mobile Device Name .

  Files folder image Files  
File Role Description
Files folder imagecore (3 files)
Files folder imagecss (3 files)
Accessible without login Plain text file index.php Example Example script
Accessible without login Plain text file LICENCE Lic. License text
Accessible without login Plain text file README.md Data Auxiliary data

  Files folder image Files  /  core  
File Role Description
  Accessible without login Plain text file autoload.php Aux. Auxiliary script
  Accessible without login Plain text file useragents.txt Data Documentation
  Plain text file user_agent.php Class Class source

  Files folder image Files  /  css  
File Role Description
  Accessible without login Plain text file bootstrap-theme.min.css Data Auxiliary data
  Accessible without login Plain text file bootstrap.min.css Data Auxiliary data
  Accessible without login Plain text file style.css Data Auxiliary data

 Version Control Unique User Downloads Download Rankings  
 100%
Total:445
This week:7
All time:6,189
This week:106Up
 User Ratings  
 
 All time
Utility:90%StarStarStarStarStar
Consistency:90%StarStarStarStarStar
Documentation:-
Examples:85%StarStarStarStarStar
Tests:-
Videos:-
Overall:62%StarStarStarStar
Rank:1097