WP_Http_Curl::stream_headers( resource $handle, string $headers ): int

In this article

This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.

Grabs the headers of the cURL request.

Description

Each header is sent individually to this callback, and is appended to the $header property for temporary storage.

Parameters

$handleresourcerequired
cURL handle.
$headersstringrequired
cURL request headers.

Return

int Length of the request headers.

Source

private function stream_headers( $handle, $headers ) {
	$this->headers .= $headers;
	return strlen( $headers );
}

Changelog

VersionDescription
3.2.0Introduced.

User Contributed Notes

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