1. Go to this page and download the library: Download merkeleon/phpnsq 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/ */
merkeleon / phpnsq example snippets
kStuff\PhpNsq\Message\Message;
use OkStuff\PhpNsq\PhpNsq;
$config = $message->setBody("Hello nsq.");
$phpnsq->setTopic("sample_topic")->publish(json_encode($message));
//defered publish
$message = [
"title" => "hello",
"content" => "this is a nsq php client.",
];
$phpnsq->setTopic("sample_topic")->publishDefer(json_encode($message), 10);
//multiple publish
$messages = [
"Hello, I am nsq client",
"There are so many libraries developed by PHP",
"Oh, no, PHP is not so good and slowly",
];
$phpnsq->setTopic("sample_topic")->publishMulti(...$messages);
use OkStuff\PhpNsq\Message\Message;
use OkStuff\PhpNsq\Command\Base;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
class Subscribe extends Base
{
CONST COMMAND_NAME = 'phpnsq:sub';
public function configure()
{
$this->setName(self::COMMAND_NAME)
->addArgument("topic", InputArgument::REQUIRED, "The topic you want to subscribe")
->addArgument("channel", InputArgument::REQUIRED, "The channel you want to subscribe")
->setDescription('subscribe new notification.')
->setHelp("This command allows you to subscribe notifications...");
}
public function execute(InputInterface $input, OutputInterface $output)
{
$phpnsq = self::$phpnsq;
$phpnsq->setTopic($input->getArgument("topic"))
->setChannel($input->getArgument("channel"))
->subscribe($this, function (Message $message) use ($phpnsq, $output) {
$phpnsq->getLogger()->info("READ", $message);
});
$this->addPeriodicTimer(5, function () use ($output) {
$memory = memory_get_usage() / 1024;
$formatted = number_format($memory, 3) . 'K';
$output->writeln("############ Current memory usage: {$formatted} ############");
});
$this->runLoop();
}
}