利用phpMQTT实现数据发布

1. github地址:https://github.com/bluerhinos/phpMQTT

2.安装:composer require bluerhinos/phpmqtt=@dev

3.上代码

connect(true, NULL, $username, $password)) {
            $mqtt->publish("topic", $msg, 0);
            $mqtt->close();
            return true;
        } else {
            return false;
        }
    }

}

4.使用mqtt.fx工具测试,订阅该主题。

你可能感兴趣的:(PHP,MQTT)