1 Detección de móviles2 3 <?php4 5 6 function obtenerNavegador($useragents){7 $useragent = $_SERVER['HTTP_USER_AGENT'];8 $useragents = array(9 'PIE4' => 'compatible; MSIE 4.01; Windows CE; PPC; 240x320',10 'PIE4_Smartphone' => 'compatible; MSIE 4.01; Windows CE; Smartphone;',11 'PIE6' => 'compatible; MSIE 6.0; Windows CE;',12 'Minimo' => 'Minimo',13 'OperaMini' => 'Minimo',14 'AvantGo' => 'AvantGo',15 'Plucker' => 'Plucker',16 'NetFront' => 'NetFront',17 'SonyEricsson' => 'SonyEricsson',18 'Nokia' => 'Nokia',19 'Motorola' => 'mot-',20 'BlackBerry' => 'BlackBerry',21 'WindowsMobile' => 'Windows CE',22 'PPC' => 'PPC',23 'PDA' => 'PDA',24 'Smartphone' => 'Smartphone',25 'Palm' => 'Palm',26 'Mobile'=>'Mobile',27 'iPhone' => 'iPhone'28 );29 30 foreach($useragents as $nav=>$ua){31 if(strstr($useragent, $ua)!=false)32 return $nav;33 }34 return '';35 }36 37 38 if(obtenerNavegador() != ''){39 header('Location: /index.php?option=com_user&view=login&vi&Itemid=127');40 exit(0);41 //echo 'ES UN MOVIL';42 }else{43 //echo 'ES UN PC';44 }45 46 47 48 ?>
Enlace
El enlace para compartir es: