iwebshop判断是不是微信打开,这样可能把微信支付显示出来

user_agent = $_SERVER[‘HTTP_USER_AGENT‘];
if (strpos($user_agent, ‘MicroMessenger‘) === t
rue) {}

  我在是classes/common.php文件中写了一个函数:

/**
	 * 获取是否微信登陆
	 * @return String
	 */
	 public static function getWeixinLogin()
	{
		$user_agent = $_SERVER[‘HTTP_USER_AGENT‘];
		if (strpos($user_agent, ‘MicroMessenger‘) === true){
			return true;
		} 
	}

  这样在哪里都可以用了

{if:Common::getWeixinLogin()}
			         <tr> 
			        	<td></td>
			          <td><span class="iconfont mpay2"></span></td>
			          <td><span id="mpay1">微信支付</span></td>
			          <td><input   name="select_pay"  value="13" type="radio" id="checkbox-3-7"><label for="checkbox-3-7"></label></td>
			       		<td></td>
			        </tr>
			        {/if}

  

iwebshop判断是不是微信打开,这样可能把微信支付显示出来

上一篇:微信企业号第三方应用开发[三]——授权应用


下一篇:(设计模式)观察者 > 本篇文章由一文多发平台[ArtiPub](https://github.c