Back to Browser class

Method getVersion

public string
getVersion
()
Retrieve the current browser's version.
Returns
  • string The current browser's version.
Since
  • 1.7.0
Class: Browser
Project: Joomla

Method getVersion - Source code

/**
 * Retrieve the current browser's version.
 *
 * @return  string  The current browser's version.
 *
 * @since   1.7.0
 */
public function getVersion()
{
    return $this->majorVersion . '.' . $this->minorVersion;
}