当我从cloudmqtt获取数据时,我遇到了一个问题。我已从此链接GitHub下载了项目。
subscribe.php
在我的subscribe.php
文件中,从phpMQTT.php
文件调用函数名称 proc 。这是subscribe.php
文件代码
$topics['sensor_data'] = array("qos" => 0, "function" => "procmsg");
$mqtt->subscribe($topics, 0);
while($mqtt->proc()){
}
$mqtt->close();
phpMQTT.php
在我的phpMQTT.php
文件中,函数 proc 定义如下。
function proc( $loop = true){
if(1){
$sockets = array($this->socket);
$w = $e = NULL;
$cmd = 0;
//$byte = fgetc($this->socket);
if(feof($this->socket)){
if($this->debug) echo "eof receive going to reconnect for good measure\n";
fclose($this->socket);
$this->connect_auto(false);
if(count($this->topics))
$this->subscribe($this->topics);
}
$byte = $this->read(1, true);
if(!strlen($byte)){
if($loop){
usleep(100000); //Fatal error shows this line
}
}else{
$cmd = (int)(ord($byte)/16);
if($this->debug) echo "Recevid: $cmd\n";
$multiplier = 1;
$value = 0;
do{
$digit = ord($this->read(1));
$value += ($digit & 127) * $multiplier;
$multiplier *= 128;
}while (($digit & 128) != 0);
if($this->debug) echo "Fetching: $value\n";
if($value)
$string = $this->read($value);
if($cmd){
switch($cmd){
case 3:
$this->message($string);
break;
}
$this->timesinceping = time();
}
}
if($this->timesinceping < (time() - $this->keepalive )){
if($this->debug) echo "not found something so ping\n";
$this->ping();
}
if($this->timesinceping<(time()-($this->keepalive*2))){
if($this->debug) echo "not seen a package in a while, disconnecting\n";
fclose($this->socket);
$this->connect_auto(false);
if(count($this->topics))
$this->subscribe($this->topics);
}
}
return 1;
}
如果我在phpMQTT.php文件的顶部使用set_limit_time(0);
。然后,当我在浏览器中浏览subscribe.php
时,它永远不会结束加载。
如果我在phpMQTT.php文件的顶部使用set_limit_time(60);
。然后,当我在60秒后在浏览器中显示subscribe.php
时,我得到了一些数据(6个数据),并显示此错误。
致命错误:第275行的C:\ xampp \ htdocs \ phpMQTT \ examples \ phpMQTT.php超出了60秒的最长执行时间
第275行表示usleep(100000);
。
如果我在phpMQTT.php文件的顶部使用set_limit_time(30);
。然后,当我在30秒后在浏览器中显示subscribe.php
时,我得到一些数据(3个数据),并显示此错误。
致命错误:第275行的C:\ xampp \ htdocs \ phpMQTT \ examples \ phpMQTT.php超出了30秒的最长执行时间
我哪里错了?我该如何解决这个问题?
答案 0 :(得分:1)
proc
方法旨在永远运行&#34;
while($mqtt->proc()){ }
因为它总是返回true,所以循环永远不会结束。
因此,如果您将时间限制设置为30秒(或其他任何内容),则在此时间段之后总是会失败(最有可能是usleep
方法,因为脚本几乎所有时间都花在那里)
如某些(github issue)中所述 - 订阅应该直接在后台服务器上运行,而不是通过浏览器调用(因此您可以避免服务器超时,浏览器连接超时,......)