This commit is contained in:
Evgeny Zinoviev 2023-02-14 16:38:00 +03:00
parent 46c560b5a5
commit aca0594138

View File

@ -117,11 +117,12 @@ class MiscHandler extends RequestHandler
$date_fmt = 'd.m.Y H:i:s';
foreach ($body['response'] as $cam => $data) {
// $fix = date($date_fmt, $data['fix']);
$fix = date($date_fmt, $data['fix']);
$start = date($date_fmt, $data['motion_start']);
$motion = date($date_fmt, $data['motion']);
echo "$cam:\n motion: $motion\n";
echo " motion_start: $start\n\n";
echo "$cam:\n motion: $motion\n";
echo " motion_start: $start\n";
echo " fix: $fix\n\n";
}
}