.dev/samples/redis/sub.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

require __DIR__ . '/_redis.php';

$channel = $conf['prefix'] . $conf['channel'];

$redis->subscribe([$channel], function ($redis, $channel, $msg) {
    echo $channel . ' | ' . $msg . PHP_EOL;
});