Browser Detection using PHP Browscap
Requirement
- latest browscap.ini from Gary Keith’s site
- download Jonathan Stoppani’s browscap.ini parser
- create a folder called cache as Browscap.php will store information for quick access in the folder.
The Code
<?php
require('Browscap.php');
$bc = new Browscap('cache');
$bc->localFile = 'php_browscap.ini';
$data = $bc->getBrowser();
print_r($data);
?>
Finally, access $data as an object
echo $data->Browser;
Source taken from http://www.evanbot.com/article/php-browscap/19
One Comment to “Browser Detection using PHP Browscap”
Leave a Reply




Nice share!