- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
/**
* Detects if the current device is using a mac OS
*/
function DetectMacOSX() {
if (stripos($this->userAgent, $this->macOSX) !== FALSE) {
return TRUE;
}
else {
return FALSE;
}
}