0

我正在尝试发送一个 http 请求,但我注意到当我尝试PHPSESSID作为 COOKIE 发送时,我收到了警告:

file_get_contents(' http://mysite.localhost '):打开流失败:HTTP 请求失败

代码

$options = array(
    'http' => array(
        'header'  => 
            "Content-type: application/x-www-form-urlencoded\r\n".
            "Cookie: {$this->COOKIE}\r\n",
                'method'  => $this->method,
                'content' => $this->POST,
            ),
        );
$c = file_get_contents($this->uri, false, stream_context_create($options));
if(!$c)
    throw new \Exception("Unable to fetch the request...");
echo $c;

编辑
的 var_dump 输出:

var_dump($this->COOKIE, $this->method, $this->POST);

string(53) "HI=COOKIE; L=S; PHPSESSID=o1eqt811isceh4f0nhfnnlnm70"
string(4) "POST"
string(6) "POST=VALUE"

我究竟做错了什么?

4

2 回答 2

3

您必须先关闭当前会话,然后在调用函数“file_get_contents”之前调用此函数“session_write_close”。

如果您想在调用后使用会话,请不要忘记在调用“file_get_contents”后重新打开 session_start。

所以代码将是这样的:

$options = array(
    'http' => array(
        'header'  => 
            "Content-type: application/x-www-form-urlencoded\r\n".
            "Cookie: {$this->COOKIE}\r\n",
                'method'  => $this->method,
                'content' => $this->POST,
            ),
        );
session_write_close();
$c = file_get_contents($this->uri, false, stream_context_create($options));
于 2014-04-20T13:06:45.897 回答
0

确保您的 php.ini 配置中的 allow-url-fopen处于“开启”状态

于 2013-09-07T19:43:48.090 回答