/**
* 判断当前是否是微信浏览器,还是APP客户端
*/
function isWeixinEsz()
{
if (strpos($_SERVER['HTTP_USER_AGENT'],
'MicroMessenger') !== false) {
return 1;
} else {
$isApp = hinkCookie::get('isApp');
if($isApp){
return 2;
} else {
$isApp = hinkRequest::instance()->get('isAPP',false);
if($isApp){
hinkCookie::set('isApp',1);
return 2;
} else {
return 0;
}
}
}
return 0;
}