diff --git a/common/HttpClient.php b/common/HttpClient.php index a291ecc..aa020d1 100644 --- a/common/HttpClient.php +++ b/common/HttpClient.php @@ -391,7 +391,6 @@ class HttpClient $this->header['User-Agent'] = $this->agent; } if (!empty($this->header)) { - var_dump($this->header); $client->setHeaders($this->parseHeaderMat()); } @@ -417,7 +416,6 @@ class HttpClient } else { $client->post($url, $data); } - var_dump($url, $host, $this->isSSL, $this->getHostPort(), $data); return $client; }