Stars: 194
Forks: 38
Pull Requests: 7
Issues: 13
Watchers: 13
Last Updated: 2023-04-23 14:41:42
Asynchronous MQTT client for PHP based on workerman.
License:
Languages: PHP
Asynchronous MQTT client for PHP based on workerman.
composer require workerman/mqttsubscribe.php
<?php
require __DIR__ . '/vendor/autoload.php';
use Workerman\Worker;
$worker = new Worker();
$worker->onWorkerStart = function(){
$mqtt = new Workerman\Mqtt\Client('mqtt://test.mosquitto.org:1883');
$mqtt->onConnect = function($mqtt) {
$mqtt->subscribe('test');
};
$mqtt->onMessage = function($topic, $content){
var_dump($topic, $content);
};
$mqtt->connect();
};
Worker::runAll();Run with command php subscribe.php start
publish.php
<?php
require __DIR__ . '/vendor/autoload.php';
use Workerman\Worker;
$worker = new Worker();
$worker->onWorkerStart = function(){
$mqtt = new Workerman\Mqtt\Client('mqtt://test.mosquitto.org:1883');
$mqtt->onConnect = function($mqtt) {
$mqtt->publish('test', 'hello workerman mqtt');
};
$mqtt->connect();
};
Worker::runAll();Run with command php publish.php start
Client::__construct()Client::connect()Client::publish()Client::subscribe()Client::unsubscribe()Client::disconnect()Client::close()callback onConnectcallback onMessagecallback onErrorcallback onCloseCreate an instance by $address and $options.
$address can be on the following protocols: 'mqtt', 'mqtts', 'mqtt://test.mosquitto.org:1883'.
$options is the client connection options. Defaults:
keepalive: 50 seconds, set to 0 to disableclient_id: client id, default workerman-mqtt-client-{$mt_rand}protocol_name: 'MQTT' or 'MQIsdp'protocol_level: 'MQTT' is 4 and 'MQIsdp' is 3clean_session: true, set to false to receive QoS 1 and 2 messages while
offlinereconnect_period: 1 second, interval between two reconnectionsconnect_timeout: 30 senconds, time to wait before a CONNACK is receivedusername: the username required by your broker, if anypassword: the password required by your broker, if anywill: a message that will sent by the broker automatically when
the client disconnect badly. The format is:
topic: the topic to publishcontent: the message to publishqos: the QoSretain: the retain flagresubscribe : if connection is broken and reconnects,
subscribed topics are automatically subscribed again (default true)bindto default '', used to specify the IP address that PHP will use to access the networkssl default false, it can be set true or ssl context see http://php.net/manual/en/context.ssl.phpdebug default false, set true to show debug infoConnect to broker specified by the given $address and $options in __construct($address, $options).
Publish a message to a topic
$topic is the topic to publish to, String$message is the message to publish, String$options is the options to publish with, including:
qos QoS level, Number, default 0retain retain flag, Boolean, default falsedup mark as duplicate flag, Boolean, default false$callback - function (\Exception $exception), fired when the QoS handling completes,
or at the next tick if QoS 0. No error occurs then $exception will be null.Subscribe to a topic or topics
$topic is a String topic or an Array which has as keys the topic name and as value
the QoS like array('test1'=> 0, 'test2'=> 1) to subscribe.$options is the options to subscribe with, including:
qos qos subscription level, default 0$callback - function (\Exception $exception, array $granted)
callback fired on suback where:
exception a subscription error or an error that occurs when client is disconnectinggranted is an array of array('topic' => 'qos', 'topic' => 'qos') where:
topic is a subscribed to topicqos is the granted qos level on itUnsubscribe from a topic or topics
$topic is a String topic or an array of topics to unsubscribe from$callback - function (\Exception $e), fired on unsuback. No error occurs then $exception will be null..Send DISCONNECT package to broker and close the client.
Close the client without DISCONNECT package.
Emitted on successful connection (CONNACK package received).
function (topic, message, packet) {}
Emitted when the client receives a publish packet
$topic topic of the received packet$content payload of the received packet$mqtt Client instance.Emitted when something wrong for example the client cannot connect broker.
Emitted when connection closed.
MIT