NukeViet\Client\Browser::isBrowser PHP Method

isBrowser() public method

Check to see if the specific browser is valid
public isBrowser ( string $browserName ) : boolean
$browserName string
return boolean True if the browser is the specified browser
    public function isBrowser($browserName)
    {
        return 0 == strcasecmp($this->_browser_name, trim($browserName)) or 0 == strcasecmp($this->_browser_key, trim($browserName));
    }