設置cookie的我正在獲取somesite網頁..我如何能在捲曲
但它什麼都不顯示 和URL地址的變化。
比如我有捲曲頁面鍵入
http://localhost/sushant/EXAMPLE_ROUGH/curl.php
我的編碼是=
$fp = fopen("cookie.txt", "w");
fclose($fp);
$agent= 'Mozilla/5.0 (Windows; U; Windows NT 5.1; pl; rv:1.9) Gecko/2008052906 Firefox/3.0';
$ch = curl_init();
curl_setopt($ch, CURLOPT_USERAGENT, $agent);
// 2. set the options, including the url
curl_setopt($ch, CURLOPT_URL, "http://www.fnacspectacles.com/place-spectacle/manifestation/Grand-spectacle-LE-ROI-LION-ROI4.htm");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt ($ch, CURLOPT_COOKIEJAR, 'cookie.txt');
curl_setopt($ch, CURLOPT_COOKIEFILE, "cookie.txt");
// 3. execute and fetch the resulting HTML output
if(curl_exec($ch) === false)
{
echo 'Curl error: ' . curl_error($ch);
}
else
echo $output = curl_exec($ch);
// 4. free up the curl handle
curl_close($ch);
但canege URL這樣的..
http://localhost/aide.do?sht=_aide_cookies_
對象不找到。
如何解決這些問題幫助我
我不明白什麼是 「cookie.txt」 一樣。使錯誤顯示:'error_reporting(E_ALL);' – 2010-04-01 11:54:34
你的問題到底是什麼?什麼不行? – 2010-04-01 11:54:43
不明白爲什麼VolkerK恢復我的編輯... – 2010-04-01 11:57:46