Include FeedCache.php in your script
Then simply pass in the local file-name (that you want to save it as) and the remote feed:
$feed_cache = new FeedCache('local_file.xml', 'https://example.com/feed.xml');
$data = simplexml_load_string($feed_cache->get_data());
You will also need to make sure you have a writable folder called "cache" in the root of your site.
- v1 (2012-04-26) ** ADD: Initial commit
FeedCache is released under the MIT license. I make no guarantees about the reliability of this script. Use at your own risk.