Temat: curl - help!
ukryte pola należy dopisać do postfields (pole lang też)
to ostatnie wygląda na sumę kontrolną, prawdopodobnie ustawiane jest cookie z nazwą tego pola (lub z identyfikatorem sesji)
function parse_response($this_response)
{
// Split response into header and body sections
list($response_headers, $response_body) = explode("\r\n\r\n", $this_response, 2);
$response_header_lines = explode("\r\n", $response_headers);
// First line of headers is the HTTP response code
$http_response_line = array_shift($response_header_lines);
if(preg_match('@^HTTP/[0-9]\.[0-9] ([0-9]{3})@',$http_response_line, $matches)) { $response_code = $matches[1]; }
// put the rest of the headers in an array
$response_header_array = array();
foreach($response_header_lines as $header_line)
{
list($header,$value) = explode(': ', $header_line, 2);
$response_header_array[$header] .= $value."\n";
}
return array("code" => $response_code, "header" => $response_header_array, "body" => $response_body);
}
funkcja pozwala przetworzyć odpowiedź i uzyskać ciasteczka:
$response = parse_response($strona);
$cookies = explode("\n", $response["header"]["Set-Cookie"]);
foreach($cookies as $this_cookie) { echo "Cookie: ".$this_cookie); }
na początek wystarczy sprawdzić z tym polem co jest na obrazku, jeśli nie zadziała, to:
1. łączymy się ze strona, pobieramy odpowiedź i ciastka
2. uzupełniamy postfields oraz wypełniamy nagłówek:
// Create the basic header
$this_header = array(
"MIME-Version: 1.0",
"Content-Type: application/x-www-form-urlencoded;charset=ISO-8859-2",
"Content-transfer-encoding: text"
);
// Add each cookie that has been returned in the response
// If cookies need to be added/deleted or value changed, then add code here
$cookies = explode("\n", $response["header"]["Set-Cookie"]);
foreach($cookies as $this_cookie) { array_push($this_header, "Cookie: ".$this_cookie); }
curl_setopt($ch, CURLOPT_HTTPHEADER, $this_header);
curl_setopt($ch, CURLOPT_HEADER, 1);
3. wykonujemy curl po raz drugi, tym razem powinno pokazać właściwą treść
Janusz Skudrzyk edytował(a) ten post dnia 30.12.08 o godzinie 02:34