Skip to content

Instantly share code, notes, and snippets.

@imbyc
Created September 24, 2020 01:29
Show Gist options
  • Save imbyc/9c7bee5d3a871e552220a3ba9cb49bb8 to your computer and use it in GitHub Desktop.
Save imbyc/9c7bee5d3a871e552220a3ba9cb49bb8 to your computer and use it in GitHub Desktop.
[PHP 检测域名是否被微信拦截]
<?php
$url = 'http://baidu.com';
$headers = get_headers('http://mp.weixinbridge.com/mp/wapredirect?&action=appmsg_redirect&uin=&biz=MzUxMTMxODc2MQ==&mid=100000007&idx=1&type=1&scene=0&url=' . $url, 1);
if ($headers['Location'] !== $url) {
echo '域名被封';
} else {
echo '域名正常';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment