我只是想獲取雅虎網頁。 www.yahoo.com使用curl從本地主機
如果我從我的託管網站運行我的簡單腳本,它可以工作。
如果我嘗試從我的本地主機。我得到的是一個頭迴應: 「w32.fp.re1.yahoo.com未壓縮/分塊週三4月27日15點13分48秒PDT 2011」
這裏是我的代碼:
<?php
function curl_download($Url){
// is cURL installed yet?
if (!function_exists('curl_init')){
die('Sorry cURL is not installed!');
}
// OK cool - then let's create a new cURL resource handle
$ch = curl_init();
// Now set some options (most are optional)
// Set URL to download
curl_setopt($ch, CURLOPT_URL, $Url);
// Set a referer
curl_setopt($ch, CURLOPT_REFERER, "http://www.example.org/yay.htm");
// User agent
curl_setopt($ch, CURLOPT_USERAGENT, "MozillaXYZ/1.0");
// Include header in result? (0 = yes, 1 = no)
curl_setopt($ch, CURLOPT_HEADER, 0);
// Should cURL return or print out the data? (true = return, false = print)
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
// Timeout in seconds
curl_setopt($ch, CURLOPT_TIMEOUT, 10);
// Download the given URL, and return output
$output = curl_exec($ch);
// Close the cURL resource, and free system resources
curl_close($ch);
return $output;
}
print curl_download('http://www.yahoo.com/');
?>
什麼是你的代碼看起來喜歡? – nlaq 2011-04-27 22:33:11
如果您包含源代碼將會很有幫助。 – 2011-04-27 22:34:11
我們可以幫助你,如果你的一些代碼:) – fedmich 2011-04-27 22:39:00