Der Versuch, einige Daten von Yahoo Finance RSS-Feed zu bekommen, aber bei der Verwendung von Curl bekomme ich eine leere Antwort. Wer weiß warum?PHP CURL Yahoo Finanzen Returning Blank
function getContents($thisURL) {
$strURL = "$thisURL";
$resURL = curl_init();
$ch = curl_init();
curl_setopt($ch,CURLOPT_ENCODING,'gzip');
curl_setopt($ch, CURLOPT_IPRESOLVE, CURL_IPRESOLVE_V4);
curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
curl_setopt($ch, CURLOPT_TIMEOUT, 60);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_URL, $strURL);
$data = curl_exec($ch);
curl_close($ch);
return $data;
}
$feed = getContents("http://feeds.finance.yahoo.com/rss/2.0/headline?s=AAPL®ion=US&lang=en-US");
Wenn ich regelmäßig file_get_contents verwenden es kein Problem, wie funktioniert:
file_get_contents("http://feeds.finance.yahoo.com/rss/2.0/headline?s=AAPL®ion=US&lang=en-US");
Ich will nicht file_get_contents
Gebrauch lesen. – user2182349