PHP Класс GuzzleHttp\Psr7\MultipartStream

Наследование: implements Psr\Http\Message\StreamInterface, use trait GuzzleHttp\Psr7\StreamDecoratorTrait
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
__construct ( array $elements = [], string $boundary = null )
getBoundary ( ) : string Get the boundary
isWritable ( )

Защищенные методы

Метод Описание
createStream ( array $elements ) Create the aggregate stream that will be used to upload the POST data

Приватные методы

Метод Описание
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

Описание методов

__construct() публичный метод

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() защищенный метод

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

getBoundary() публичный метод

Get the boundary
public getBoundary ( ) : string
Результат string

isWritable() публичный метод

public isWritable ( )