|
@@ -60,7 +60,7 @@ function rlog(...$args)
|
|
|
return;
|
|
|
}
|
|
|
static $LOG_CONSOLE = false; //是否输出到控制台
|
|
|
- static $LOG_NAME = "indoor_inoutres_push.log"; //值为空时 不写入文件
|
|
|
+ static $LOG_NAME = "parea_inoutres_push.log"; //值为空时 不写入文件
|
|
|
static $LOG_SIZE = 64 * 1024 * 1024; //文件最大尺寸
|
|
|
|
|
|
static $LOG_CACHE = false; //是否缓存日志内容 用于批量写入文件
|
|
@@ -256,7 +256,7 @@ while (true) {
|
|
|
echo 'redis连接错误!' . PHP_EOL;
|
|
|
continue;
|
|
|
}
|
|
|
- $data = app_redis()->lpop('indoor_inoutres_push');
|
|
|
+ $data = app_redis()->lpop('parea_inoutres_push');
|
|
|
|
|
|
if(!$data){
|
|
|
// var_dump($data);
|
|
@@ -273,15 +273,18 @@ while (true) {
|
|
|
|
|
|
http($url, $url_data, [], 'POST');
|
|
|
|
|
|
- if($url_data["data"]["dirt"] == 1){
|
|
|
+ if($url_data["data"][0]["dirt"] == 1){
|
|
|
$camData = [
|
|
|
"station" => $url_data["mac"],
|
|
|
"list" => [
|
|
|
- "label" =>$url_data["data"]["label"],
|
|
|
- "time" => $url_data["time"]
|
|
|
+ [
|
|
|
+ "label" =>$url_data["data"][0]["label"],
|
|
|
+ "time" => $url_data["data"][0]["time"]
|
|
|
+ ]
|
|
|
]
|
|
|
];
|
|
|
- http("http://localhost:8115/api/areaLabelReport", $camData, [], 'POST');
|
|
|
+ $resp = http("http://localhost:8115/api/areaLabelReport", $camData, [], 'POST');
|
|
|
+ // rlog("CAM api RESP",$resp);
|
|
|
}
|
|
|
|
|
|
rlog("PUSH INFO","推送依赖数据", $data);
|