API16

API16:JBrowser/isBrowser

From Joomla! Documentation

Description

Determine if the given browser is the same as the current.


<! removed transcluded page call, red link never existed >

Syntax

isBrowser($browser)
Parameter Name Default Value Description
$browser $browser The browser to check.

Returns

boolean Is the given browser the same as the current?

Defined in

libraries/joomla/environment/browser.php

Importing

jimport( 'joomla.environment.browser' );

Source Body

public function isBrowser($browser)
{
        return ($this->_browser === $browser);
}


<! removed transcluded page call, red link never existed >

Examples

Code Examples