$offset
$offset : integer
Decorator used to return only a subset of a stream
__construct(\Psr\Http\Message\StreamInterface $stream, integer $limit = -1, integer $offset)
\Psr\Http\Message\StreamInterface | $stream | Stream to wrap |
integer | $limit | Total number of bytes to allow to be read from the stream. Pass -1 for no limit. |
integer | $offset | Position to seek to before reading (only works on seekable streams). |
__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).
string | $name | Name of the property (allows "stream" only). |
seek(integer $offset, integer $whence = SEEK_SET)
Allow for a bounded seek on the read limited stream {@inheritdoc}
integer | $offset | Stream offset |
integer | $whence | Specifies how the cursor position will be calculated
based on the seek offset. Valid values are identical to the built-in
PHP $whence values for |
read(integer $length) : string
Read data from the stream.
integer | $length | Read up to $length bytes from the object and return them. Fewer than $length bytes may be returned if underlying stream call returns fewer bytes. |
Returns the data read from the stream, or an empty string if no bytes are available.
createStream() : \Psr\Http\Message\StreamInterface
Implement in subclasses to dynamically create streams when requested.