你的
唤醒
是正确的,搜索条件存储在会话中,但存储在远程服务器会话中。因此,您要做的是“告诉服务器您的会话cookie”,以便能够保存和加载它!
因此,对于第一个查询,我们将发布搜索条件,并告诉远程服务器我们的会话名称和id:
$opts = array('http' =>
array(
'method' => 'POST',
'header' => "Content-type: application/x-www-form-urlencoded\r\n" .
"Cookie: ".session_name()."=".session_id()."\r\n",
'content' => $postdata
)
);
对于第二个,服务器已经在会话中存储了我们的查询,所以我们不需要再次发送它。所以我们要做一个GET。还告诉服务器我们的会话名称和会话id。
$opts2 = array('http' =>
array(
'method' => 'GET',
'header' => "Content-type: application/x-www-form-urlencoded\r\n" .
"Cookie: ".session_name()."=".session_id()."\r\n",
)
);
就这样!