<?php
if(IsWeiXin()){
Header("Content-type:application/vnd.ms-word");
Header("Content-Disposition: attachment;filename=test.doc");
exit();
}else{
//根据需要选择是否要跳转
$apkUrl = "";//APK下载链接
header("Location: ".$apkUrl);
exit();
}
function IsWeiXin(){
$ua = $_SERVER['HTTP_USER_AGENT'];
if (strpos($ua, 'MicroMessenger') == false && strpos($ua, 'Windows Phone') == false){
return false;
} else {
return true;
}
}
?>
评论 (0)