欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

php识别微信客户端并且使用html静态页面引导用户使用浏览器打开这个页面(代码实现教程)

程序员文章站 2023-12-15 11:13:10
php识别微信客户端并且使用html静态页面引导用户使用打开这个页面(代码实现教程) if(strstr($_server['http_user_agent'], 'mi...

php识别微信客户端并且使用html静态页面引导用户使用打开这个页面(代码实现教程)

if(strstr($_server['http_user_agent'], 'micromessenger/')){  
    echo '<html ><head><title>请通过浏览器打开完成支付</title><meta name="viewport" content="width=device-width, initial-scale=1,maximum-scale=1, user-scalable=no"></head><body style="background-color: #999;">  
<p class="weixin-tip" style="position: fixed; left:0; top:0; bottom:0; background: rgba(0,0,0,0.6); filter:alpha(opacity=80);  height: 100%; width: 100%; z-index: 100;">  
    <p style="text-align: center; margin-top: 10%; padding:0 5%;">  
        <img src="img/live_weixin.png" style="max-width: 100%; height: auto;" alt="微信打开"/>  
    </p>  
</p></body></html >';  
return;  
}  

效果图

php识别微信客户端并且使用html静态页面引导用户使用浏览器打开这个页面(代码实现教程)

上一篇:

下一篇: