Nieuw lid |
|
ok, het is me gelukt om de XML feed op het scherm te toveren, maar dat is uiteraard niet de bedoeling. Ik wil de feed in een variabele zodat ik deze kan splitsen en de info uithalen die ik nodig heb. Hoe doe ik dit zonder de feed rechtstreeks op het scherm te tonen?
// create a new CURL resource
$ch = curl_init();
// set URL and other appropriate options
curl_setopt($ch, CURLOPT_URL, "http://currencysource.com/RSS/EUR.xml");
curl_setopt($ch, CURLOPT_HEADER, false);
// grab URL and pass it to the browser
$xml_feed = curl_exec($ch);
// close CURL resource, and free up system resources
curl_close($ch);
// create a new CURL resource $ch = curl_init(); // set URL and other appropriate options curl_setopt($ch, CURLOPT_URL, "http://currencysource.com/RSS/EUR.xml"); curl_setopt($ch, CURLOPT_HEADER, false); // grab URL and pass it to the browser $xml_feed = curl_exec($ch); // close CURL resource, and free up system resources curl_close($ch);
EDIT: heb het gevonden, enkel deze optie moet er nog bij:
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
|