mirror of
https://github.com/danog/byte-stream.git
synced 2024-12-03 09:47:49 +01:00
17 lines
434 B
Markdown
17 lines
434 B
Markdown
# InMemoryStream
|
|
|
|
An `InMemoryStream` allows creating an `InputStream` from a single known string chunk. This is helpful if the complete stream contents are already known.
|
|
|
|
```php
|
|
$inputStream = new InMemoryStream("foobar");
|
|
```
|
|
|
|
It also allows creating a stream without any chunks by passing `null` as chunk.
|
|
|
|
```php
|
|
$inputStream = new InMemoryStream;
|
|
|
|
// The stream ends immediately
|
|
assert(null === yield $inputStream->read());
|
|
```
|