diff --git a/wchat/common/HttpClient.php b/wchat/common/HttpClient.php index bb1237b..75c4562 100644 --- a/wchat/common/HttpClient.php +++ b/wchat/common/HttpClient.php @@ -283,8 +283,10 @@ class HttpClient $data = $this->paramEncode($data); if ($this->use_swoole) { [$url, $host] = $this->parseUrlHost($url); + var_dump($url, $host); return $this->coroutine($host, $url, $data); } else { + var_dump($url, 'curl'); return $this->useCurl($url, $data); } }