\GuzzleHttp\Psr7MultipartStream

Stream that when read returns bytes for a streaming multipart or multipart/form-data stream.

Summary

Methods
Properties
Constants
__construct()
__get()
__toString()
getContents()
__call()
close()
getMetadata()
detach()
getSize()
eof()
tell()
isReadable()
isWritable()
isSeekable()
rewind()
seek()
read()
write()
getBoundary()
No public properties found
No constants found
createStream()
No protected properties found
N/A
getHeaders()
addElement()
createElement()
getHeader()
$boundary
N/A

Properties

$boundary

$boundary : 

Type

Methods

__construct()

__construct(array  $elements = array(), string  $boundary = null) 

Parameters

array $elements

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.

string $boundary

You can optionally provide a specific boundary

Throws

\InvalidArgumentException

__get()

__get(string  $name) : \Psr\Http\Message\StreamInterface

Magic method used to create a new stream if streams are not added in the constructor of a decorator (e.g., LazyOpenStream).

Parameters

string $name

Name of the property (allows "stream" only).

Returns

\Psr\Http\Message\StreamInterface

__toString()

__toString() 

getContents()

getContents() 

__call()

__call(string  $method, array  $args) : mixed

Allow decorators to implement custom methods

Parameters

string $method

Missing method name

array $args

Method arguments

Returns

mixed

close()

close() 

getMetadata()

getMetadata(  $key = null) 

Parameters

$key

detach()

detach() 

getSize()

getSize() 

eof()

eof() 

tell()

tell() 

isReadable()

isReadable() 

isWritable()

isWritable() : boolean

Returns whether or not the stream is writable.

Returns

boolean

isSeekable()

isSeekable() 

rewind()

rewind() 

seek()

seek(  $offset,   $whence = SEEK_SET) 

Parameters

$offset
$whence

read()

read(  $length) 

Parameters

$length

write()

write(  $string) 

Parameters

$string

getBoundary()

getBoundary() : string

Get the boundary

Returns

string

createStream()

createStream(array  $elements) 

Create the aggregate stream that will be used to upload the POST data

Parameters

array $elements

getHeaders()

getHeaders(array  $headers) 

Get the headers needed before transferring the content of a POST file

Parameters

array $headers

createElement()

createElement(  $name, \Psr\Http\Message\StreamInterface  $stream,   $filename, array  $headers) : array

Parameters

$name
\Psr\Http\Message\StreamInterface $stream
$filename
array $headers

Returns

array

getHeader()

getHeader(array  $headers,   $key) 

Parameters

array $headers
$key