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