Open Journal Systems
3.3.0
|
Public Member Functions | |
__toString () | |
close () | |
detach () | |
eof () | |
getContents () | |
getMetadata ($key=null) | |
getSize () | |
isReadable () | |
isSeekable () | |
isWritable () | |
read ($length) | |
rewind () | |
seek ($offset, $whence=SEEK_SET) | |
tell () | |
write ($string) | |
Describes a data stream.
Typically, an instance will wrap a PHP stream; this interface provides a wrapper around the most common operations, including serialization of the entire stream to a string.
Definition at line 12 of file vendor/psr/http-message/src/StreamInterface.php.
Psr\Http\Message\StreamInterface::__toString | ( | ) |
Reads all data from the stream into a string, from the beginning to end.
This method MUST attempt to seek to the beginning of the stream before reading data and read the stream until the end is reached.
Warning: This could attempt to load a large amount of data into memory.
This method MUST NOT raise an exception in order to conform with PHP's string casting operations.
Implemented in Http\Message\Encoding\FilteredStream, GuzzleHttp\Psr7\FnStream, GuzzleHttp\Psr7\Stream, Http\Message\Stream\BufferedStream, GuzzleHttp\Psr7\PumpStream, GuzzleHttp\Psr7\AppendStream, and GuzzleHttp\Psr7\BufferStream.
Psr\Http\Message\StreamInterface::close | ( | ) |
Closes the stream and any underlying resources.
Implemented in GuzzleHttp\Psr7\CachingStream, GuzzleHttp\Psr7\Stream, GuzzleHttp\Psr7\FnStream, Http\Message\Stream\BufferedStream, GuzzleHttp\Psr7\AppendStream, GuzzleHttp\Psr7\PumpStream, and GuzzleHttp\Psr7\BufferStream.
Psr\Http\Message\StreamInterface::detach | ( | ) |
Separates any underlying resources from the stream.
After the stream has been detached, the stream is in an unusable state.
Implemented in GuzzleHttp\Psr7\Stream, GuzzleHttp\Psr7\FnStream, Http\Message\Stream\BufferedStream, GuzzleHttp\Psr7\AppendStream, GuzzleHttp\Psr7\PumpStream, and GuzzleHttp\Psr7\BufferStream.
Psr\Http\Message\StreamInterface::eof | ( | ) |
Returns true if the stream is at the end of the stream.
Implemented in GuzzleHttp\Psr7\Stream, Http\Message\Stream\BufferedStream, GuzzleHttp\Psr7\AppendStream, GuzzleHttp\Psr7\CachingStream, Http\Message\Encoding\FilteredStream, GuzzleHttp\Psr7\FnStream, GuzzleHttp\Psr7\PumpStream, GuzzleHttp\Psr7\BufferStream, and GuzzleHttp\Psr7\LimitStream.
Psr\Http\Message\StreamInterface::getContents | ( | ) |
Returns the remaining contents in a string
Implemented in Http\Message\Stream\BufferedStream, GuzzleHttp\Psr7\FnStream, Http\Message\Encoding\FilteredStream, GuzzleHttp\Psr7\PumpStream, GuzzleHttp\Psr7\Stream, GuzzleHttp\Psr7\AppendStream, and GuzzleHttp\Psr7\BufferStream.
Psr\Http\Message\StreamInterface::getMetadata | ( | $key = null | ) |
Get stream metadata as an associative array or retrieve a specific key.
The keys returned are identical to the keys returned from PHP's stream_get_meta_data() function.
Implemented in Http\Message\Stream\BufferedStream, GuzzleHttp\Psr7\Stream, GuzzleHttp\Psr7\AppendStream, GuzzleHttp\Psr7\FnStream, GuzzleHttp\Psr7\PumpStream, and GuzzleHttp\Psr7\BufferStream.
Psr\Http\Message\StreamInterface::getSize | ( | ) |
Get the size of the stream if known.
Implemented in Http\Message\Encoding\FilteredStream, GuzzleHttp\Psr7\Stream, GuzzleHttp\Psr7\AppendStream, Http\Message\Stream\BufferedStream, GuzzleHttp\Psr7\FnStream, GuzzleHttp\Psr7\PumpStream, GuzzleHttp\Psr7\LimitStream, GuzzleHttp\Psr7\BufferStream, and GuzzleHttp\Psr7\CachingStream.
Psr\Http\Message\StreamInterface::isReadable | ( | ) |
Returns whether or not the stream is readable.
Implemented in GuzzleHttp\Psr7\AppendStream, Http\Message\Stream\BufferedStream, GuzzleHttp\Psr7\Stream, GuzzleHttp\Psr7\FnStream, GuzzleHttp\Psr7\PumpStream, and GuzzleHttp\Psr7\BufferStream.
Psr\Http\Message\StreamInterface::isSeekable | ( | ) |
Returns whether or not the stream is seekable.
Implemented in GuzzleHttp\Psr7\AppendStream, Http\Message\Encoding\FilteredStream, GuzzleHttp\Psr7\Stream, Http\Message\Stream\BufferedStream, GuzzleHttp\Psr7\FnStream, GuzzleHttp\Psr7\PumpStream, GuzzleHttp\Psr7\BufferStream, and GuzzleHttp\Psr7\NoSeekStream.
Psr\Http\Message\StreamInterface::isWritable | ( | ) |
Returns whether or not the stream is writable.
Implemented in GuzzleHttp\Psr7\AppendStream, Http\Message\Stream\BufferedStream, GuzzleHttp\Psr7\Stream, GuzzleHttp\Psr7\FnStream, GuzzleHttp\Psr7\PumpStream, GuzzleHttp\Psr7\BufferStream, and GuzzleHttp\Psr7\MultipartStream.
Psr\Http\Message\StreamInterface::read | ( | $length | ) |
Read data from the stream.
int | $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. |
Implemented in Http\Message\Stream\BufferedStream, GuzzleHttp\Psr7\Stream, GuzzleHttp\Psr7\AppendStream, GuzzleHttp\Psr7\FnStream, GuzzleHttp\Psr7\LimitStream, GuzzleHttp\Psr7\PumpStream, Http\Message\Encoding\FilteredStream, GuzzleHttp\Psr7\BufferStream, and GuzzleHttp\Psr7\CachingStream.
Psr\Http\Message\StreamInterface::rewind | ( | ) |
Seek to the beginning of the stream.
If the stream is not seekable, this method will raise an exception; otherwise, it will perform a seek(0).
Implemented in Http\Message\Encoding\FilteredStream, GuzzleHttp\Psr7\Stream, Http\Message\Stream\BufferedStream, GuzzleHttp\Psr7\AppendStream, GuzzleHttp\Psr7\FnStream, GuzzleHttp\Psr7\PumpStream, GuzzleHttp\Psr7\BufferStream, and GuzzleHttp\Psr7\CachingStream.
Psr\Http\Message\StreamInterface::seek | ( | $offset, | |
$whence = SEEK_SET |
|||
) |
Seek to a position in the stream.
Implemented in Http\Message\Encoding\FilteredStream, GuzzleHttp\Psr7\Stream, Http\Message\Stream\BufferedStream, GuzzleHttp\Psr7\AppendStream, GuzzleHttp\Psr7\FnStream, GuzzleHttp\Psr7\PumpStream, GuzzleHttp\Psr7\BufferStream, GuzzleHttp\Psr7\LimitStream, GuzzleHttp\Psr7\CachingStream, and GuzzleHttp\Psr7\NoSeekStream.
Psr\Http\Message\StreamInterface::tell | ( | ) |
Returns the current position of the file read/write pointer
Implemented in GuzzleHttp\Psr7\Stream, Http\Message\Stream\BufferedStream, GuzzleHttp\Psr7\FnStream, GuzzleHttp\Psr7\AppendStream, GuzzleHttp\Psr7\LimitStream, GuzzleHttp\Psr7\PumpStream, and GuzzleHttp\Psr7\BufferStream.
Referenced by GuzzleHttp\Psr7\CachingStream\seek(), and GuzzleHttp\Psr7\CachingStream\write().
Psr\Http\Message\StreamInterface::write | ( | $string | ) |
Write data to the stream.
string | $string | The string that is to be written. |
Implemented in GuzzleHttp\Psr7\AppendStream, GuzzleHttp\Psr7\Stream, Http\Message\Stream\BufferedStream, GuzzleHttp\Psr7\FnStream, GuzzleHttp\Psr7\PumpStream, GuzzleHttp\Psr7\BufferStream, GuzzleHttp\Psr7\CachingStream, and GuzzleHttp\Psr7\DroppingStream.
Referenced by GuzzleHttp\Psr7\copy_to_stream().