mqtt icon indicating copy to clipboard operation
mqtt copied to clipboard

Asynchronous MQTT client for PHP based on workerman.

Results 4 mqtt issues
Sort by recently updated
recently updated
newest added

I've altered the chatroom example to let the user exit the chatroom: ``` $console = new TcpConnection(STDIN); $console->onMessage = function($console, $message) use ($mqtt){ $message=trim($message); if ($message=="exit") { $mqtt->disconnect(); die; }...

laravel 中使用只能使用一个进程,多了无法使用

`public function handle() { global $argv; $action = $this->argument('action'); if (!in_array($action, ['start', 'stop'])) { $this->error('Error Arguments'); exit; } $argv[0] = 'workerman:httpserver'; $argv[1] = $action; $argv[2] = $this->option('daemonize') ? '-d' :...

Hello! I am using [bunny](https://github.com/jakubkulhan/bunny) to work with RabbitMQ, the code is: ```php $client = (new Bunny\Client())->connect()->channel(); // ... $channel->run(function(Message $message, Channel $channel, Client $client) { // --> here i...