iot-admin/vendor/workerman/mqtt/examples/v5/subscribe-no-ssl.php
2023-11-30 22:53:01 +08:00

63 lines
1.8 KiB
PHP

<?php
require __DIR__ . '/../../vendor/autoload.php';
use Workerman\Worker;
$worker = new Worker();
$worker->onWorkerStart = function(){
$will = [
'topic' => 'workerman-mqtt/user/delete',
'qos' => 1,
'retain' => 0,
'content' => 'byebye',
'properties' => [
'will_delay_interval' => 60,
'message_expiry_interval' => 60,
'content_type' => 'test',
'payload_format_indicator' => true, // false 0 1
],
];
$mqtt = new Workerman\Mqtt\Client('mqtt://broker.emqx.io:1883', array(
'debug' => true,
"username"=>"rw", "password"=>"readwrite",
'properties' =>[
'session_expiry_interval' => 60,
'receive_maximum' => 65535,
'topic_alias_maximum' => 65535,
],
'protocol_level' => 5,
'will' => $will
));
$mqtt->onConnect = function(\Workerman\Mqtt\Client $mqtt) {
// MQTT 5.0
$topics = [
// 主题 => 选项
'workerman-mqtt/user/get' => [
'qos' => 1,
'no_local' => true,
'retain_as_published' => true,
'retain_handling' => 2,
],
'workerman-mqtt/user/update' => [
'qos' => 0,
'no_local' => false,
'retain_as_published' => true,
'retain_handling' => 2,
],
];
$mqtt->subscribe($topics);
$mqtt->subscribe('workerman', [
'qos' => 0,
'no_local' => false,
'retain_as_published' => true,
'retain_handling' => 2,
]);
};
$mqtt->onMessage = function($topic, $content){
echo "topic:$topic content:$content\n";
};
$mqtt->connect();
};
Worker::runAll();