我正在编写一个将PHP中的Web服务连接到MQTT代理的程序。该代理正在Raspberry Pi上运行mosquitto。
想法是让Web服务发送请求(提交表单),然后将发布发送到MQTT代理,然后等待答复。
但是,问题在于该循环似乎是一个无限循环,从而导致PHP致命错误。
我尝试添加quitstop()函数以在收到消息后退出循环,但是程序在到达该点之前崩溃。
MQTT对我来说仍然很新,但是我需要发送请求,然后保持循环打开状态,直到收到答案为止,以便继续执行我的程序。
这是处理表单提交的代码:
require("phpMQTT.php");
$server = "xxx.xxx.xxx.xx"; // change if necessary
$port = 1883; // change if necessary
$username = "username"; // set your username
$password = "password"; // set your password
$client_id = "phpMQTT-request-1234"; // make sure this is unique for connecting to sever - you could use uniqid()
$mqtt = new phpMQTT($server, $port, $client_id);
$msg = $_POST['box'];
if (!empty($msg)) {
if ($mqtt->connect(true, null, $username, $password)) {
$mqtt->publish("dev/test", $msg, 0);
$mqtt->close();
}
subscribeToTopic($mqtt);
}
function subscribeToTopic($mqtt)
{
$topics['dev/test'] = array("qos" => 0, "function" => "procmsg");
$mqtt->subscribe($topics, 0);
while ($mqtt->proc()) {
}
$mqtt->close();
}
function procmsg($topic, $msg)
{
global $mqtt;
echo $msg;
quitstop($mqtt);
}
function quitstop($mqtt)
{
$mqtt->close();
}