Просмотр поста

.
Jahak

Udesign, Да куда еще проще? Там проще уже некуда, скачиваешь архив и даж композер по моему не нужен

// подключение и инициализация класса
require_once 'Mobile_Detect.php';
$detect = new Mobile_Detect;
 
// Любое мобильное устройство
if ( $detect->isMobile() ) {
 //какие-то действия
}
 
// Любой планшетный ПК.
if( $detect->isTablet() ){
 //какие-то действия
}
 
// Exclude tablets.
if( $detect->isMobile() && !$detect->isTablet() ){
 //какие-то действия
}
 
// Check for a specific platform with the help of the magic methods:
if( $detect->isiOS() ){
 //какие-то действия
}
 
if( $detect->isAndroidOS() ){
 //какие-то действия
}