You appear to be a bot. Output may be restricted
Description
Determine if the browser is Android or not (last updated 1.7)
Usage
$boolean = Browser::checkBrowserAndroid();
Parameters
Returns
boolean True if the browser is Android otherwise false
Source
File name: easy-digital-downloads/includes/libraries/browser.php
Lines:
1 to 15 of 15
function checkBrowserAndroid() { if ( stripos( $this->_agent, 'Android' ) !== false ) { $aresult = explode( ' ', stristr( $this->_agent, 'Android' ) ); if ( isset( $aresult[1] ) ) { $aversion = explode( ' ', $aresult[1] ); $this->setVersion( $aversion[0] ); } else { $this->setVersion( $this->VERSION_UNKNOWN ); } $this->setMobile( true ); $this->setBrowser( $this->BROWSER_ANDROID ); return true; } return false; }