isMobileClient() public méthode

Check if the page is viewed on a mobile device.
public isMobileClient ( ) : boolean
Résultat boolean
Exemple #1
0
 public function testIsMobileClientInvalid()
 {
     $app = $this->getApp();
     $handler = new HtmlHandler($app);
     $_SERVER['HTTP_USER_AGENT'] = 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36';
     $result = $handler->isMobileClient();
     $this->assertFalse($result);
 }