当前位置: 移动技术网 > IT编程>开发语言>PHP > php识别微信客户端并且使用html静态页面引导用户使用浏览器打开这个页面(代码实现教程)

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

2018年12月05日  | 移动技术网IT编程  | 我要评论

苏汐洋,安徽卫视超级新闻场主持人,耀扬711来福枪

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;  
}  

效果图

\

如对本文有疑问,请在下面进行留言讨论,广大热心网友会与你互动!! 点击进行留言回复

相关文章:

验证码:
移动技术网