嘗試使用cURL和PHP獲取某個URL的內容。 該代碼應該在sourceforge.net項目虛擬主機服務器上運行。PHP + cURL無法正常工作
代碼:
<?php
function get_data($url)
{
$ch = curl_init();
$timeout = 10;
curl_setopt($ch,CURLOPT_URL,$url);
curl_setopt($ch,CURLOPT_RETURNTRANSFER,1);
curl_setopt($ch,CURLOPT_CONNECTTIMEOUT,$timeout);
$data = curl_exec($ch);
curl_close($ch);
return $data;
}
$url1 = urlencode("http://www.google.com");
$url2 = "http://www.google.com";
$output = get_data($url2);
echo $output;
?>
我檢查了捲曲的支持。但上面的代碼不工作,頁面正在加載直到超時沒有輸出。我也嘗試了編碼的網址。爲什麼?
錯誤503 Service Unavailable
。 PHP版本5.3.2
什麼版本的PHP? – Ikke
你有什麼錯誤?它可能來自您的Internet連接。 – Mob