From 0eb229a0e6c5079ee796a889958523e1aace9646 Mon Sep 17 00:00:00 2001 From: admin <3364509428@qq.com> Date: Fri, 17 Oct 2025 23:32:01 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=A0=E9=99=A4=20More/Get.php.bak?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- More/Get.php.bak | 50 ------------------------------------------------ 1 file changed, 50 deletions(-) delete mode 100644 More/Get.php.bak diff --git a/More/Get.php.bak b/More/Get.php.bak deleted file mode 100644 index e440c3b..0000000 --- a/More/Get.php.bak +++ /dev/null @@ -1,50 +0,0 @@ - '19884551721', - 'password' => 'LX5bH76SJf9E' -]; - -// 初始化cURL -$ch = curl_init($url); -curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); // 返回响应内容而不直接输出 -curl_setopt($ch, CURLOPT_POST, true); // 使用POST方法 -curl_setopt($ch, CURLOPT_HTTPHEADER, [ - 'Content-Type: application/json' // 设置JSON头 -]); -curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($payload)); // JSON编码数据 - -// 执行请求 -$response = curl_exec($ch); -$httpCode = curl_getinfo($ch, CURLINFO_HTTP_CODE); -$error = curl_error($ch); -curl_close($ch); - -// 处理响应 -if ($httpCode === 200) { - $data = json_decode($response); - if (isset($data->jwt)) { - $jwt = $data->jwt; -