|
@@ -52,15 +52,21 @@ class Tool extends Base
|
|
|
//收到的数据
|
|
|
public function receive()
|
|
|
{
|
|
|
+
|
|
|
$token = $_GET['token'];
|
|
|
if (!$token || $token != '22723927C') {
|
|
|
json_fail('缺少token或者token不对');
|
|
|
}
|
|
|
+
|
|
|
$param = json_decode(file_get_contents("php://input"), true);
|
|
|
+ print('===========================');
|
|
|
+ var_dump(json_last_error());
|
|
|
+
|
|
|
|
|
|
+ var_dump(file_get_contents("php://input"));
|
|
|
//校验imei是否存在
|
|
|
$where = [];
|
|
|
- if (!isset($param['Imei']) || $param['Imei'] == '') {
|
|
|
+ if (!isset($param['Imei']) || $param['Imei'] == '') {
|
|
|
|
|
|
json_fail('缺少设备IMEI号参数');
|
|
|
}
|
|
@@ -139,12 +145,6 @@ class Tool extends Base
|
|
|
|
|
|
|
|
|
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
foreach ($list as $key => $value) {
|
|
|
|
|
|
$da = json_decode($value['Content'], true);
|