1. Go to this page and download the library: Download innmind/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/ */
innmind / stream example snippets
use Innmind\Stream\Streams;
use Innmind\Url\Path;
$file = Streams::of()->readable()->open(Path::of('/some/path/to/a/file'));
while (!$file->end()) {
echo $file->readLine()->match(
static fn($line) => $line->toString(),
static fn() => throw new \Exception('failed to read the stream'),
);
}
$file->close()->match(
static fn() => null, // closed correctly
static fn() => throw new \Exception('failed to close the stream'),
);
use Innmind\Stream\{
Stream\Bidirectional,
Streams,
};
use Innmind\TimeContinuum\Earth\ElapsedPeriod;
use Innmind\Immutable\Either;
$socket = Bidirectional::of(\stream_socket_client('unix:///path/to/socket.sock'));
$select = Streams::of()
->watch()
->timeoutAfter(new ElapsedPeriod(60 * 1000)) // select with a 1 minute timeout
->forRead($socket);
do {
$socket = $select()
->filter(static fn($ready) => $ready->toRead()->contains($socket))
->flatMap(static fn() => $socket->read())
->map(static fn($data) => $data->toUpper())
->match(
static fn($data) => $socket->write($data),
static fn() => Either::right($socket), // no data to send
)
->match(
static fn($socket) => $socket, // data sent back
static fn($error) => throw new \Exception(\get_class($error)),
);
} while (true);
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.