0

如何使用 PHP 使标题相同?我想在从 cURL 发送请求时将标头设置为相同。基本上,我可以通过在浏览器中输入来访问 url。但是在使用 PHP cURL 时,我无法访问该页面。所以,也许使标题相同可以解决这个问题。

发送实际请求时的标头:

Request Line:  GET /jlp.cgi?Flag=Html_Data&LogType=0&Dummy=1341550112739 HTTP/1.1

Host: <abc>

Proxy-Connection:  Keep Alive

Cookie: iR=548729

原始请求中没有Connection和这样的字段。Referer两个请求中的所有其他字段 ( User-Agent, Accept, Accept-Language, Accept-Encoding) 都是相同的。

从 cURL 发送时的标头:

Request Line: GET /curlexp2.php?address=http%3A%2F%2F10.128.58.200%2Fjlp.cgi%3FFlag%3DHtml_Data%26LogType%3D0%26Dummy%3D1341550112739&submit=Log+In HTTP/1.1

Host: localhost

Connection: Keep Alive

Referer: http://localhost/exp2.php

在这个 cURL 请求中没有Proxy-Connection和这样的字段。Cookie

提前致谢。

4

1 回答 1

1

使用 php 的 curl_setopt 函数并将所需的标头内容设置为数组。

curl_setopt(
 cur_resource,
 CURLOPT_HTTPHEADER,
 array(
  "Content-Type: application/x-www-form-urlencoded",
  "Content-Length: " . strlen($data),
  "Referrer": "...",
 )
);
于 2012-07-06T05:22:59.097 回答