Answers
cookies 不過是 request header 中的一項內容罷了,請求頁面的時候把之前保存的 cookies 一起發過去,沒什麼大不了的。
用
file_get_contents
也行,示例代碼如下
<?php
// Create a stream
$opts = array(
'http'=>array(
'method'=>"GET",
'header'=>"Accept-language: en\r\n" .
"Cookie: foo=bar\r\n"
)
);
$context = stream_context_create($opts);
// Open the file using the HTTP headers set above
$file = file_get_contents('http://www.example.com/', false, $context);
?>
然後
$http_response_header
里有返回的新 cookies,保存下來供以後調用就行了。
抓取頁面跟代理沒什麼兩樣,只不過目標呈現不同罷了。
巧克力脆皮猪蹄
answered 10 years, 2 months ago