random-user-agent
![Software License][ico-license], (*1)
Generate real random user-agents. The user agent list is largely pulled from the Firefox extension random-agent-spoofer h/t dillbyrne/random-agent-spoofer. Additional entries were sourced from UserAgentString.com and WiiBrew to provide more options for consoles and common web crawlers, (*2)
You should be running at least PHP 5.4 to use this class, (*3)
Install
Via Composer, (*4)
``` bash
$ composer require campo/random-user-agent, (*5)
## Usage
### Generating a User Agent
To generate a random user agent, you can simply use the following:
``` php
echo \Campo\UserAgent::random(), "\n";
Filtering the Type of User Agent
To limit the types of user agents that are returned, you can pass a filter array to random():, (*6)
``` php
echo \Campo\UserAgent::random([
'os_type' => 'Windows',
'device_type' => 'Mobile'
]), "\n";, (*7)
A filter is simply an array with key-value pairs specifying the types of agent strings that you want to have returned. The types of keys in this filtered array may include the following:
- `agent_name`
- `agent_type`
- `device_type`
- `os_name`
- `os_type`
Filters also support passing additional arrays to better segment the results you will receive from random():
```php
echo \Campo\UserAgent::random([
'os_type' => ['Android', 'iOS'],
'device_type' => ['Mobile', 'Tablet']
]), "\n";
The above will return only user-agent’s for Android & iOS OS types that are either mobile or tablets., (*8)
To get a list of values that can be accepted by these filter fields, you can use the following methods which will return arrays of values that can be used with the respected fields noted above:, (*9)
UserAgent::getDeviceTypes()
UserAgent::getAgentTypes()
UserAgent::getAgentNames()
UserAgent::getOSTypes()
UserAgent::getOSNames()
Values passed to filters are case-insensitive, (*10)
Error Handling
This class will throw an exception if either a filter returns no user agent strings, which means that a filter was invalid or too specific, or if one of the fields above was not present, which means that this library has been corrupted., (*11)
License
The MIT License (MIT). Please see License File for more information., (*12)