标签: php http get http-get get-request
我正在使用以下PHP代码将HTTP GET请求发送到URL,我不知道为什么我的脚本在第一个响应需要一点时间后在第一个请求之后发送另一个重复请求。 (例如:> 1秒)
$token = \JWT::encode($params, $secret_key); header("Location: http://some_url?" . http_build_query(['t' => $token])); exit();
$token = \JWT::encode($params, $secret_key);
header("Location: http://some_url?" . http_build_query(['t' => $token]));
exit();