Based on and Credits to: james2doyle/getBrowser.php
No | Date | Description |
001 | 19-05-2019 | added platforms "iPad" and "iPhone(just I'm unable to test on iPhone but I guess it's right?)" |
002 | 19-05-2019 | added user browser "CriOS (Chrome on Ipad)" |
003 | 19-05-2019 | Separated Android from Linux platform and gave it it's own platform. |
- Language:PHP
- Version:5+
- Developed on:7.3
- Purpose: A helper class to obtain info and to perform actions upon the user's browser
- Obtain and print the user's user agent info:getBrowserInfo()
- Printing in HTML:setUseHtml(true)This is an ul(class 'browser-details-ul') / li(class 'browser-detail-li') setup!
- Adding a parent element:eg: setWrapper('div')
- Adding attributes on that element:eq: setAttribute('class="foo" style="css:rules"')
- Printing in HTML:setUseHtml(true)
- Perform actions based on user's platfom:eg:IsPlatform('Mac')
- Perform actions based on user's browser:eg:IsUserBrowser('Safari')
- Perform actions based on user's browser & version number 'this is with built in comparison':eg:IsVersion('Equal', '10.0')
The options are:
- Equal
- NotEqual
- GreaterThan
- LessThan
- GreaterThanOrEqualTo
- LessThanOrEqualTo
<?php
require_once('path/to/BrowserHelper.php');
// in case of namespaced
use path\to\BrowserHelper;
//in a function eg:
function print_useragent(){
$browser = new BrowserHelper();
$this->_browser = new BrowserHelper();
//
if($browser->IsPlatform('Mac')):
// your actions for this platform
else:
// your actions for the other platforms
endif;
if($browser->IsUserBrowser('Chrome')):
// your actions for this browser
else:
// your actions for the other browsers
endif;
if($browser->IsUserBrowser('Chrome') and $browser->IsVersion('LessThanOrEqualTo', '70.0')):
// your actions for this browser and depending on the version number
// if more comparisons
elseif($browser->IsUserBrowser('Chrome') and $browser->IsVersion('LessThanOrEqualTo', '60.0')):
//second step, your actions for this browser and depending on the version number
else:
// your actions for the other browsers and version numbers
endif;
/**
* this options are chainable!
*/
//if you want it printed in html
$browser->setUseHtml(true);
//if you want a parent element eg:
$browser->setWrapper('div');
//if you want add attributes to the parent element eg:
$browser->setAttribute('class="foo" style="css:rules"')
//echo or return $browser->getBrowserInfo();
}
// in a class
protected $_browser;
// within a class function eg:
public function __construct(){
$this->_browser = new BrowserHelper();
//
if($this->_browser->IsPlatform('Mac')):
// your actions for this platform
else:
// your actions for the other platforms
endif;
if($this->_browser->IsUserBrowser('Chrome')):
// your actions for this browser
else:
// your actions for the other browsers
endif;
if($this->_browser->IsUserBrowser('Chrome') and $this->_browser->IsVersion('LessThanOrEqualTo', '70.0')):
// your actions for this browser and depending on the version number
// if more comparisons
elseif($this->_browser->IsUserBrowser('Chrome') and $this->_browser->IsVersion('LessThanOrEqualTo', '60.0')):
//second step, your actions for this browser and depending on the version number
else:
// your actions for the other browsers and version numbers
endif;
}
public function print_useragent(){
/**
* this options are chainable!
*/
//if you want it printed in html
$this->_browser->setUseHtml(true);
//if you want a parent element eg:
$this->_browser->setWrapper('div');
//if you want add attributes to the parent element eg:
$this->_browser->setAttribute('class="foo" style="css:rules"')
//echo or return $this->_browser->getBrowserInfo();
}
I'm not a php expert and just have a basic knowledge about it. I usually get there by looking up examples, making mistakes, learning and above all with persistence. Therefor constructive critic is always welcome.
My website: https://www.aadswebdesign.nl
This site is in progress and there is still a lot to be done. Because I have limited time for that, the progress is at a slow pace. At the first page I have an html print of browserinfo.