PHP code example of fyre / stream

1. Go to this page and download the library: Download fyre/stream library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

fyre / stream example snippets


use Fyre\Stream\Stream;

$stream = new Stream($resource);

$stream = Stream::fromFile($filePath, $mode);

$stream->close();

$contents = $stream->contents();

$ended = $stream->ended();

$isReadable = $stream->isReadable();

$isSeekable = $stream->isSeekable();

$isWritable = $stream->isWritable();

$data = $stream->read($length);

$stream->rewind();

$stream->seek($offset, $whence);

$size = $stream->size();

$offset = $stream->tell();

$written = $stream->write($data);