📜  检查使用哪个设备打开网页 php 代码示例

📅  最后修改于: 2022-03-11 14:54:03.891000             🧑  作者: Mango

代码示例1
require_once 'Mobile_Detect.php';
$detect = new Mobile_Detect;

// Any mobile device (phones or tablets).
if ( $detect->isMobile() ) {
  
}

// Any tablet device.
if( $detect->isTablet() ){
 
}