当前位置: 首页 >
2020年6月12日发布的所有文章
-
判断当前访问的用户是 PC端 还是 手机端
function isMobile() { static $is_mobile = null; null === $is_mobile && $is_mobile = request()->isMobile(); return $is_mobile; // 如果有HTTP_X_WAP_PROFILE则一定是移动设备 if (isset ($_SERVER['HTTP_X_WAP_PROFILE'])) return ...