1
0
mirror of https://github.com/danog/byte-stream.git synced 2024-12-03 09:47:49 +01:00
byte-stream/docs/in-memory-stream.md
2017-05-22 10:20:55 +02:00

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());
```