mirror of
https://github.com/danog/byte-stream.git
synced 2024-11-27 04:14:49 +01:00
475 B
475 B
title | permalink |
---|---|
InMemoryStream | /in-memory-stream |
An InMemoryStream
allows creating an InputStream
from a single known string chunk. This is helpful if the complete stream contents are already known.
$inputStream = new InMemoryStream("foobar");
It also allows creating a stream without any chunks by passing null
as chunk.
$inputStream = new InMemoryStream;
// The stream ends immediately
assert(null === yield $inputStream->read());