Methods |
public
|
__construct(resource $stream)
Creates a new HttpStream object
Creates a new HttpStream object
|
#
|
public
static
|
fromString(string $content): self
Creates a new HttpStream object from a string
Creates a new HttpStream object from a string
|
#
|
public
static
|
fromData(
mixed[]|object $data,
int-mask-of<FormDataFlag::*> $flags = FormDataFlag::PRESERVE_NUMERIC_KEYS | FormDataFlag::PRESERVE_STRING_KEYS,
?DateFormatterInterface $dateFormatter = null,
bool $asJson = false,
?string $boundary = null,
): HttpStreamInterface
Encapsulate arbitrarily nested data in a new HttpStream or
HttpMultipartStream object
Encapsulate arbitrarily nested data in a new HttpStream or
HttpMultipartStream object
|
#
|
public
static
|
copyToString(StreamInterface $from): string
Copy data from a stream to a string
Copy data from a stream to a string
|
#
|
public
static
|
copyToStream(StreamInterface $from, StreamInterface $to): void
Copy data from one stream to another
Copy data from one stream to another
|
#
|
public
|
isReadable(): bool
Returns whether or not the stream is readable.
Returns whether or not the stream is readable.
Implements
|
#
|
public
|
isWritable(): bool
Returns whether or not the stream is writable.
Returns whether or not the stream is writable.
Implements
|
#
|
public
|
isSeekable(): bool
Returns whether or not the stream is seekable.
Returns whether or not the stream is seekable.
Implements
|
#
|
public
|
getSize(): ?int
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.
Implements
|
#
|
public
|
getMetadata(?string $key = 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.
Implements
|
#
|
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.
Implements
|
#
|
public
|
getContents(): string
Returns the remaining contents in a string
Returns the remaining contents in a string
Implements
|
#
|
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
Implements
|
#
|
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.
Implements
|
#
|
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).
Implements
|
#
|
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.
Implements
|
#
|
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.
Implements
|
#
|
public
|
seek(int $offset, SEEK_SET|SEEK_CUR|SEEK_END $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.
|
Implements
|
#
|
public
|
close(): void
Closes the stream and any underlying resources.
Closes the stream and any underlying resources.
Implements
|
#
|
public
|
detach()
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
Implements
|
#
|
protected
|
assertIsSeekable(): void
|
#
|
protected
|
assertIsReadable(): void
|
#
|
protected
|
assertHasStream(): void
|
#
|