3 declare(strict_types=1);
37 protected string $url =
'';
49 if (!self::_isCurlExtensionLoaded()) {
56 if (!function_exists(
'curl_init')) {
72 final public function init(
bool $set_proxy =
true): bool
76 if ($this->url !==
'') {
77 $this->ch = curl_init($this->url);
79 $this->ch = curl_init();
84 if (curl_errno($this->ch)) {
91 if ($proxy->isActive()) {
92 $this->
setOpt(CURLOPT_HTTPPROXYTUNNEL,
true);
94 if (!empty($proxy->getHost())) {
95 $this->
setOpt(CURLOPT_PROXY, $proxy->getHost());
99 if (!empty($proxy->getPort())) {
100 $this->
setOpt(CURLOPT_PROXYPORT, $proxy->getPort());
113 final public function setOpt(
int $a_option, $a_value): bool
115 if (!curl_setopt($this->ch, $a_option, $a_value)) {
128 curl_setopt($this->ch, CURLOPT_HEADERFUNCTION, array($this,
'parseHeader'));
129 if ((
$res = curl_exec($this->ch)) ===
false) {
130 if (($err = curl_error($this->ch)) !==
'') {
141 $header_size = $this->
getInfo(CURLINFO_HEADER_SIZE);
143 $this->header_plain = substr($a_response, 0, $header_size);
144 $this->response_body = substr($a_response, $header_size);
162 $res = curl_getinfo($this->ch, $opt);
164 $res = curl_getinfo($this->ch);
177 $len = strlen($header);
178 $header = explode(
':', $header, 2);
179 if (count($header) === 2) {
180 $this->header_arr[strtolower(trim($header[0]))] = trim($header[1]);
187 if ($this->ch !== null) {
188 curl_close($this->ch);
exec()
Wrapper for curl_exec.
init(bool $set_proxy=true)
parseResponse(string $a_response)
static _isCurlExtensionLoaded()
setOpt(int $a_option, $a_value)
Wrapper for curl_setopt.
getInfo($opt=0)
Get information about a specific transfer.
parseHeader($handle, string $header)
Parse respone header.
__construct(string $a_url='')