Ai
1 Star 0 Fork 1

谷动谷力/MQTT-Client-Examples

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
phpMQTT_pubsub.php 536 Bytes
一键复制 编辑 原始数据 按行查看 历史
wivwiv 提交于 2021-08-12 17:28 +08:00 . feat(php-client): add mqtt-client-PHP
<?php
require('vendor/autoload.php');
use \Bluerhinos\phpMQTT;
$server = 'broker.emqx.io';
$port = 1883;
$clientId = rand(5, 15);
$username = 'emqx_user';
$password = null;
$clean_session = false;
$c = new phpMQTT($server, $port, $clientId, null);
$conn_result = $c -> connect(false, null, $username, $password);
if ($conn_result) {
$topics['emqx/test'] = array("qos"=>0, "function"=>"procmsg");
$c -> subscribe($topics);
}
function procmsg($topic, $msg) {
echo "recv $topic from $msg";
}
while ($c->proc()) {
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/lojam/MQTT-Client-Examples.git
git@gitee.com:lojam/MQTT-Client-Examples.git
lojam
MQTT-Client-Examples
MQTT-Client-Examples
master

搜索帮助