Created
September 24, 2020 01:29
-
-
Save imbyc/9c7bee5d3a871e552220a3ba9cb49bb8 to your computer and use it in GitHub Desktop.
[PHP 检测域名是否被微信拦截]
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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