You could use an RSS reader class such as http://www.phpclasses.org/package/2552-PHP-Retrieve-and-parse-RSS-feeds-extending-feed-reader.html
It is really simple to use:
include("./files_includes/RSSReader.inc.php");
$rss = new RSSReader("http://www.php.net/news.rss");
see the example at http://www.phpclasses.org/browse/file/10759.html
I do not really understand why you would like to explode all the word in the description, but with that class you could do it something like:
explode(' ',$rss->getItemDescription("rsstext",$i));
Be aware that the class is dependent on the FeedReader-class: http://www.phpclasses.org/package/1811-PHP-Parse-and-extract-information-from-RSS-2-0-feeds.html - so you need to download that too.