dcarbone/curl-file-header-extractor

This package is abandoned and no longer maintained. The author suggests using the dcarbone/curl-header-extractor package instead.

Utility to extract headers from PHP CURL to file request.

v3.0.3 2021-02-14 17:54 UTC

This package is auto-updated.

Last update: 2021-02-14 17:54:56 UTC


README

Utility to extract headers from PHP CURL request.

Installation

While it is advisable to use Composer, this lib is simple enough to be used without it.

Composer Require entry:

{
    "dcarbone/curl-header-extractor": "v3.0.*"
}

Usage

There are 3 methods available:

getHeaderAndBody

This method accepts a single argument that may be:

  • Full path to the file
  • File resource created with fopen with at least read permissions.
  • String of response data

The response will be an array with the following structure:

array(
    // array of headers,
    // string of body content
);

Example:

list($headers, $body) = \DCarbone\CURLHeaderExtractor::getHeaderAndBody($input);

where $headers will be an array of headers, or NULL if no headers were found, and $body will be the entire contents of the body.

Note:

This method CAN be very expensive to use if you are working with particularly large responses, as the end result will be the entire contents of the file loaded into memory.

If you wish to extract JUST the headers, the below methods might serve you better.

extractHeadersAndBodyStartOffset

This method will return an array with the following structure:

array(
    // array of headers,
    // integer representing the byte offset of the beginning of the body
);

Example:

list($headers, $bodyByteOffset) = \DCarbone\CURLHeaderExtractor::extractHeadersAndBodyStartOffset($input);

If no headers were seen in the file, $headers in the above example will be NULL and the byte offset will be 0.

removeHeadersAndMoveFile

This method will strip the file of the headers, copy the body to a new file, and then delete the old file.

Example:

\DCarbone\CURLHeaderExtractor::removeHeadersAndMoveFile($file, 'my_new_filename.ext');

If you executed the extractHeadersAndBodyStartOffset method already, you may pass in the body start offset integer in as the 3rd argument.

Invoking

To make this class easier to work with as a "helper", it implements the PHP magic method __invoke (you can see the implementation here).

This allows you to do something like this:

$extractor = new \DCarbone\CURLHeaderExtractor();

list($headers, $body) = $extractor($input);

You can, of course, access the other methods as you normally would any static method:

list($headers, $bodyByteOffset) = $extractor::extractHeadersAndBodyStartOffset($input);