User Agent Class

The User Agent Class provides functions that help identify informationabout the browser, mobile device, or robot visiting your site.

Using the User Agent Class

Initializing the Class

The User Agent class is always available directly from the current IncomingRequest instance.By default, you will have a request instance in your controller that you can retrieve theUser Agent class from:

  1. $agent = $this->request->getUserAgent();

User Agent Definitions

The user agent name definitions are located in a config file located at:app/Config/UserAgents.php. You may add items to the varioususer agent arrays if needed.

Example

When the User Agent class is initialized it will attempt to determinewhether the user agent browsing your site is a web browser, a mobiledevice, or a robot. It will also gather the platform information if itis available:

  1. $agent = $this->request->getUserAgent();
  2.  
  3. if ($agent->isBrowser())
  4. {
  5. $currentAgent = $agent->getBrowser().' '.$agent->getVersion();
  6. }
  7. elseif ($agent->isRobot())
  8. {
  9. $currentAgent = $this->agent->robot();
  10. }
  11. elseif ($agent->isMobile())
  12. {
  13. $currentAgent = $agent->getMobile();
  14. }
  15. else
  16. {
  17. $currentAgent = 'Unidentified User Agent';
  18. }
  19.  
  20. echo $currentAgent;
  21.  
  22. echo $agent->getPlatform(); // Platform info (Windows, Linux, Mac, etc.)

Class Reference

  • CodeIgniter\HTTP\UserAgent
    • isBrowser([$key = NULL])

Parameters:

  1. - **$key** (_string_) Optional browser nameReturns:

TRUE if the user agent is a (specified) browser, FALSE if notReturn type:bool

Returns TRUE/FALSE (boolean) if the user agent is a known web browser.

  1. if ($agent->isBrowser('Safari'))
  2. {
  3. echo 'You are using Safari.';
  4. }
  5. elseif ($agent->isBrowser())
  6. {
  7. echo 'You are using a browser.';
  8. }

Note

The string “Safari” in this example is an array key in the list of browser definitions.You can find this list in app/Config/UserAgents.php if you want to add newbrowsers or change the strings.

  • isMobile([$key = NULL])

Parameters:

  1. - **$key** (_string_) Optional mobile device nameReturns:

TRUE if the user agent is a (specified) mobile device, FALSE if notReturn type:bool

Returns TRUE/FALSE (boolean) if the user agent is a known mobile device.

  1. if ($agent->isMobile('iphone'))
  2. {
  3. echo view('iphone/home');
  4. }
  5. elseif ($agent->isMobile())
  6. {
  7. echo view('mobile/home');
  8. }
  9. else
  10. {
  11. echo view('web/home');
  12. }
  • isRobot([$key = NULL])

Parameters:

  1. - **$key** (_string_) Optional robot nameReturns:

TRUE if the user agent is a (specified) robot, FALSE if notReturn type:bool

Returns TRUE/FALSE (boolean) if the user agent is a known robot.

Note

The user agent library only contains the most common robot definitions. It is not a complete list of bots.There are hundreds of them so searching for each one would not be very efficient. If you find that some botsthat commonly visit your site are missing from the list you can add them to yourapp/Config/UserAgents.php file.

  • isReferral()

Returns:TRUE if the user agent is a referral, FALSE if notReturn type:bool

Returns TRUE/FALSE (boolean) if the user agent was referred from another site.

  • getBrowser()

Returns:Detected browser or an empty stringReturn type:string

Returns a string containing the name of the web browser viewing your site.

  • getVersion()

Returns:Detected browser version or an empty stringReturn type:string

Returns a string containing the version number of the web browser viewing your site.

  • getMobile()

Returns:Detected mobile device brand or an empty stringReturn type:string

Returns a string containing the name of the mobile device viewing your site.

  • getRobot()

Returns:Detected robot name or an empty stringReturn type:string

Returns a string containing the name of the robot viewing your site.

  • getPlatform()

Returns:Detected operating system or an empty stringReturn type:string

Returns a string containing the platform viewing your site (Linux, Windows, OS X, etc.).

  • getReferrer()

Returns:Detected referrer or an empty stringReturn type:string

The referrer, if the user agent was referred from another site. Typically you’ll test for this as follows:

  1. if ($agent->isReferral())
  2. {
  3. echo $agent->referrer();
  4. }
  • getAgentString()

Returns:Full user agent string or an empty stringReturn type:string

Returns a string containing the full user agent string. Typically it will be something like this:

  1. Mozilla/5.0 (Macintosh; U; Intel Mac OS X; en-US; rv:1.8.0.4) Gecko/20060613 Camino/1.0.2
  • parse($string)

Parameters:

  1. - **$string** (_string_) A custom user-agent stringReturn type:

void

Parses a custom user-agent string, different from the one reported by the current visitor.