php识别微信客户端并且使用html静态页面引导用户使用浏览器打开这个页面(代码实现教程)
程序员文章站
2023-11-29 11:37: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; }
效果图
下一篇: 利用css3径向渐变做一张优惠券的示例