StreamWrapper

Allows PSR-7 streams to be used as PHP streams.

class StreamWrapper

Based on Guzzle PSR7 stream wrapper and MongoDB's PHP library stream wrapper.

Copyright
2015-2016 Appertly
License
Apache-2.0

Instance Properties

Public
NameTypeSummary
$contextresource

The stream context

Instance Methods

Public
ReturnsSignature and Description
bool
void
stream_open(string $path, string $mode, int $options, ?string &"$opened_path)
string
stream_read(int $count)
bool
stream_seek(int $offset, int $whence = SEEK_SET)
array<arraykey,int>
int
int
stream_write(string $data)

Static Methods

Public
ReturnsSignature and Description
resource
getResource(StreamInterface $stream)

Gets a PHP stream resource for the provided PSR-7 stream.

void

Registers this stream wrapper

void

Unregisters this stream wrapper

Property Details

$context

public resource $context

The stream context

Method Details

getResource

public static function getResource(StreamInterface $stream)

Gets a PHP stream resource for the provided PSR-7 stream.

Parameters
NameTypeDescription
$streamStreamInterface

The stream to wrap

Returns
TypeDescription
resource

The generated resource

Throws
TypeConditions
InvalidArgumentException

if stream is not readable or writable

register

public static function register()

Registers this stream wrapper

stream_eof

public function stream_eof()
Returns
TypeDescription
bool

stream_open

public function stream_open(string $path, string $mode, int $options, ?string &"$opened_path)
Parameters
NameTypeDescription
$pathstring
$modestring
$optionsint
$opened_path?string
Returns
TypeDescription
void

stream_read

public function stream_read(int $count)
Parameters
NameTypeDescription
$countint
Returns
TypeDescription
string

stream_seek

public function stream_seek(int $offset, int $whence = SEEK_SET)
Parameters
NameTypeDescription
$offsetint
$whenceint
Returns
TypeDescription
bool

stream_stat

public function stream_stat()
Returns
TypeDescription
array<arraykey,int>

stream_tell

public function stream_tell()
Returns
TypeDescription
int

stream_write

public function stream_write(string $data)
Parameters
NameTypeDescription
$datastring
Returns
TypeDescription
int

unregister

public static function unregister()

Unregisters this stream wrapper