Nick

Results 1 comments of Nick

You can call the factory of FileStream and NetworkStream to get the Stream ``` require __DIR__.'/../vendor/autoload.php'; use Streamer\Stream, Streamer\FileStream, Streamer\NetworkStream; $stream = new Stream(fopen('smiley.png', 'r')); print_r($stream); $fileStream = FileStream::create('smiley.png', 'r');...