/**
 * 判断是否微信访问
 * @return bool
 */
 
function is_weixin_visit()
{
    if (strpos($_SERVER['HTTP_USER_AGENT'], 'MicroMessenger') !== false) {
        return true;
    } else {
        return false;
    }
}
if(is_weixin_visit()){
    echo "微信访问!";
}else{
    echo "other";
}
function is_weixin() {
    var ua = window.navigator.userAgent.toLowerCase();
    if (ua.match(/MicroMessenger/i) == 'micromessenger') {
        console.log("微信浏览器");
    } else {
        console.log("不是微信浏览器");
    }
}
最后修改:2022 年 07 月 05 日
如果觉得我的文章对你有用,请随意赞赏