Methods |
public
|
__toString(): string
Reads all data from the stream into a string, from the beginning to end.
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 by
|
#
|
public
|
close(): void
Closes the stream and any underlying resources.
Closes the stream and any underlying resources.
Implemented by
|
#
|
public
|
detach(): resource|null
Separates any underlying resources from the stream.
Separates any underlying resources from the stream.
After the stream has been detached, the stream is in an unusable state.
Returns
Underlying PHP stream, if any
Implemented by
|
#
|
public
|
getSize(): int|null
Get the size of the stream if known.
Get the size of the stream if known.
Returns
Returns the size in bytes if known, or null if unknown.
Implemented by
|
#
|
public
|
tell(): int
Returns the current position of the file read/write pointer
Returns the current position of the file read/write pointer
Returns
Position of the file pointer
Throws
Implemented by
|
#
|
public
|
eof(): bool
Returns true if the stream is at the end of the stream.
Returns true if the stream is at the end of the stream.
Implemented by
|
#
|
public
|
isSeekable(): bool
Returns whether or not the stream is seekable.
Returns whether or not the stream is seekable.
Implemented by
|
#
|
public
|
seek(int $offset, int $whence = SEEK_SET): void
Seek to a position in the stream.
Seek to a position in the stream.
Parameters
$offset |
Stream offset
|
$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 fseek() . SEEK_SET: Set position equal to
offset bytes SEEK_CUR: Set position to current location plus offset
SEEK_END: Set position to end-of-stream plus offset.
|
Throws
Implemented by
|
#
|
public
|
rewind(): void
Seek to the beginning of the stream.
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).
Throws
Implemented by
|
#
|
public
|
isWritable(): bool
Returns whether or not the stream is writable.
Returns whether or not the stream is writable.
Implemented by
|
#
|
public
|
write(string $string): int
Write data to the stream.
Write data to the stream.
Parameters
$string |
The string that is to be written.
|
Returns
Returns the number of bytes written to the stream.
Throws
Implemented by
|
#
|
public
|
isReadable(): bool
Returns whether or not the stream is readable.
Returns whether or not the stream is readable.
Implemented by
|
#
|
public
|
read(int $length): string
Read data from the stream.
Read data from the stream.
Parameters
$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
Returns the data read from the stream, or an empty string
if no bytes are available.
Throws
Implemented by
|
#
|
public
|
getContents(): string
Returns the remaining contents in a string
Returns the remaining contents in a string
Throws
Implemented by
|
#
|
public
|
getMetadata(string|null $key = null): array|mixed|null
Get stream metadata as an associative array or retrieve a specific key.
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.
Parameters
$key |
Specific metadata to retrieve.
|
Returns
Returns an associative array if no key is
provided. Returns a specific key value if a key is provided and the
value is found, or null if the key is not found.
Implemented by
|
#
|