This commit is contained in:
2025-11-28 11:39:14 +08:00
parent 5697102a85
commit a52610cf2a
+2 -1
View File
@@ -127,6 +127,8 @@ class CurlClient extends ClientAbstracts
if (!empty($this->caPath)) {
curl_setopt($this->client, CURLOPT_CAINFO, $this->caPath);
}
var_dump($path,$method);
}
@@ -154,7 +156,6 @@ class CurlClient extends ClientAbstracts
private function execute(): void
{
$output = curl_exec($this->client);
var_dump($output);
if ($output !== FALSE) {
$this->explode($output);
} else {