You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
396 B
PHP
15 lines
396 B
PHP
<?php
|
|
|
|
// if you're using composer
|
|
require __DIR__ . '/../vendor/autoload.php';
|
|
|
|
// v0 style global function - @deprecated
|
|
$uaInfo = parse_user_agent();
|
|
// or
|
|
// modern namespaced function
|
|
$uaInfo = donatj\UserAgent\parse_user_agent();
|
|
|
|
echo $uaInfo[donatj\UserAgent\PLATFORM] . PHP_EOL;
|
|
echo $uaInfo[donatj\UserAgent\BROWSER] . PHP_EOL;
|
|
echo $uaInfo[donatj\UserAgent\BROWSER_VERSION] . PHP_EOL;
|