* @throws GuzzleException */ public function index() { $url = $GLOBALS['data']['data']['url']; $call = 'https://mp.weixinbridge.com/mp/wapredirect?url='.urlencode($url); $client = new Client(); $response = $client->request('GET', $call, ['allow_redirects' => false]); dump(str_contains($response->getHeader('Location')[0], 'weixin110.qq.com')); } }