PHP和js判斷訪問設備是不是微信瀏覽器實例,代碼很是精簡,適合新手學習。php
js判斷是不是微信瀏覽器:html
1 function is_weixin() {
2 var ua = window.navigator.userAgent.toLowerCase(); 3 if (ua.match(/MicroMessenger/i) == 'micromessenger') { 4 $("#rs").text("微信瀏覽器"); 5 } else { 6 $("#rs").text("不是微信瀏覽器"); 7 } 8 }
PHP判斷是不是微信瀏覽器:瀏覽器
1 $is_weixin = (is_weixin() == true) ? "微信瀏覽器" : "不是微信瀏覽器";
2
3 function is_weixin() { 4 if (strpos($_SERVER['HTTP_USER_AGENT'], 'MicroMessenger') !== false) { 5 return true; 6 } return false; 7 }
本文轉自https://www.sucaihuo.com/php/813.html,轉載請保留出處。微信