From 6434be4f528072f1c5fdd9b8b43d16a4e8745f52 Mon Sep 17 00:00:00 2001 From: Administrator Date: Sat, 11 Dec 2021 16:20:08 +0800 Subject: [PATCH] 1 --- src/Curl.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Curl.php b/src/Curl.php index 8b74387..6a76571 100644 --- a/src/Curl.php +++ b/src/Curl.php @@ -75,6 +75,7 @@ class Curl extends ClientAbstracts private function curlHandlerSslSet(): void { curl_setopt($this->client, CURLOPT_SSL_VERIFYPEER, $this->getVerifyPeer()); + curl_setopt($this->client, CURLOPT_VERBOSE, TRUE); // curl_setopt($this->client, CURLOPT_SSL_VERIFYHOST, $this->getVerifyPeer()); if (!empty($this->getSslKeyFile()) && file_exists($this->getSslKeyFile())) { curl_setopt($this->client, CURLOPT_SSLKEY, $this->getSslKeyFile());