marcdh Posted May 17, 2007 Share Posted May 17, 2007 I'm just trying to save an rss feed locally for Flex sandbox issues. Code is: <?php // create a new curl resource $ch = curl_init(); // set URL and other appropriate options curl_setopt($ch, CURLOPT_URL, "http://www.dcviews.com/dcviews.xml"); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); // grab URL, and return output $output = curl_exec($ch); // this is the magic bit $fp = fopen("dcviews.xml", "w"); fwrite($fh,$output); fclose($fh); // close curl resource, and free up system resources curl_close($ch); ?> But getting the error: Warning: fwrite(): supplied argument is not a valid stream resource in .../marcharrington.com/pictorious/php/curl.php on line 18 Warning: fclose(): supplied argument is not a valid stream resource in .../marcharrington.com/pictorious/php/curl.php on line 19 Any ideas? Quote Link to comment https://forums.phpfreaks.com/topic/51828-curl-save-rss-feed-locally/ Share on other sites More sharing options...
monk.e.boy Posted May 17, 2007 Share Posted May 17, 2007 <?php $ch = curl_init("http://www.example.com/"); $fp = fopen("example_homepage.txt", "w"); curl_setopt($ch, CURLOPT_FILE, $fp); curl_setopt($ch, CURLOPT_HEADER, 0); curl_exec($ch); curl_close($ch); fclose($fp); ?> This is the example in the PHP help docs. : monk.e.boy Quote Link to comment https://forums.phpfreaks.com/topic/51828-curl-save-rss-feed-locally/#findComment-255466 Share on other sites More sharing options...
chigley Posted May 17, 2007 Share Posted May 17, 2007 You suddenly changed from $fp to $fh with your file handle: <?php // create a new curl resource $ch = curl_init(); // set URL and other appropriate options curl_setopt($ch, CURLOPT_URL, "http://www.dcviews.com/dcviews.xml"); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); // grab URL, and return output $output = curl_exec($ch); // this is the magic bit $fp = fopen("dcviews.xml", "w"); fwrite($fp,$output); fclose($fp); // close curl resource, and free up system resources curl_close($ch); ?> Quote Link to comment https://forums.phpfreaks.com/topic/51828-curl-save-rss-feed-locally/#findComment-255605 Share on other sites More sharing options...
marcdh Posted May 17, 2007 Author Share Posted May 17, 2007 doh! Thanks alot guys! www.pictorio.us news is alive!! Quote Link to comment https://forums.phpfreaks.com/topic/51828-curl-save-rss-feed-locally/#findComment-255732 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.