2 declare(strict_types=1);
27 if (!is_string($string)) {
28 throw new \InvalidArgumentException(
'The argument $string must be of type string but was "' . gettype($string) .
'"');
31 $stream =
new Stream(fopen(
'php://memory',
'rw'));
32 $stream->write($string);
45 if (!is_resource($resource)) {
46 throw new \InvalidArgumentException(
'The argument $resource must be of type resource but was "' . gettype($resource) .
'"');
49 return new Stream($resource);
60 $resource = $stream->detach();
61 return self::ofResource($resource);
Class Streams Stream factory which enables the user to create streams without the knowledge of the co...
static ofResource($resource)
Wraps an already created resource with the stream abstraction.
ofZipResource(\ZipArchive $zip, int $index)
static ofString($string)
Creates a new stream with an initial value.
Interface FileStream The base interface for all filesystem streams.
static ofPsr7Stream(StreamInterface $stream)
Create a FileStream from a Psr7 compliant stream.