PHP Class GuzzleHttp\Psr7\MultipartStream

Inheritance: implements Psr\Http\Message\StreamInterface, use trait GuzzleHttp\Psr7\StreamDecoratorTrait
Exibir arquivo Open project: nystudio107/instantanalytics Class Usage Examples

Public Methods

Method Description
__construct ( array $elements = [], string $boundary = null )
getBoundary ( ) : string Get the boundary
isWritable ( )

Protected Methods

Method Description
createStream ( array $elements ) Create the aggregate stream that will be used to upload the POST data

Private Methods

Method Description
addElement ( GuzzleHttp\Psr7\AppendStream $stream, array $element )
createElement ( $name, Psr\Http\Message\StreamInterface $stream, $filename, array $headers ) : array
getHeader ( array $headers, $key )
getHeaders ( array $headers ) Get the headers needed before transferring the content of a POST file

Method Details

__construct() public method

public __construct ( array $elements = [], string $boundary = null )
$elements array Array of associative arrays, each containing a required "name" key mapping to the form field, name, a required "contents" key mapping to a StreamInterface/resource/string, an optional "headers" associative array of custom headers, and an optional "filename" key mapping to a string to send as the filename in the part.
$boundary string You can optionally provide a specific boundary

createStream() protected method

Create the aggregate stream that will be used to upload the POST data
protected createStream ( array $elements )
$elements array

getBoundary() public method

Get the boundary
public getBoundary ( ) : string
return string

isWritable() public method

public isWritable ( )