Curl::stream_headers( resource|CurlHandle $handle, string $headers ): integer

In this article

Collect the headers as they are received

Parameters

$handleresource|CurlHandlerequired
cURL handle
$headersstringrequired
Header string

Return

integer Length of provided header

Source

	// Why do we do this? cURL will send both the final response and any
	// interim responses, such as a 100 Continue. We don't need that.
	// (We may want to keep this somewhere just in case)
	if ($this->done_headers) {
		$this->headers      = '';
		$this->done_headers = false;
	}

	$this->headers .= $headers;

	if ($headers === "\r\n") {
		$this->done_headers = true;
	}

	return strlen($headers);
}

User Contributed Notes

You must log in before being able to contribute a note or feedback.