vote up 1 vote down star

I'm using a third-party AJAX slideshow for a website that takes an RSS feed as its picture source. I would like to randomize the order of the pictures, but that's not a feature of the slideshow (or the RSS feed I'm pulling from).

Surely it shouldn't be difficult to write a short function in PHP that takes an external RSS feed, randomizes the items and re-publishes the same feed 'out of order'. I just can't seem to make it work.

flag

2 Answers

vote up 2 vote down check

Are you using DOM XML? Then just shuffle the array on import.

$xml = new DOMDocument();
$articles = $xml->getElementsByTagName("article");
$data = array();
foreach ($articles as $article) {
    data[] = ...
}
shuffle($data);
link|flag
By the way, unlike fetching data from a database, parsing XML (RSS) is intensive. – Radek Nov 5 at 0:44
getElementsByTagName() returns an object, not an array, and can't be shuffled. – Mr. Brent Nov 5 at 15:15
you are right, have updated slightly so that you save your data into an array() from nodes first, then shuffle :) – Radek Nov 5 at 16:12
Perfect, thanks. – Mr. Brent Nov 9 at 5:15
vote up 0 vote down

What worked:

$dom = new DOMDocument;
$dom->load($url);

// Load the <channel> element for this particular feed
$channel = $dom->documentElement->firstChild;

$items = $channel->getElementsByTagName('item');

// duplicate $items as $allitems, since you can't remove child nodes
// as you iterate over a DOMNodeList
$allitems = array();
foreach ($items as $item) {
	$allitems[] = $item;
	}

// Remove, shuffle, append
foreach ($allitems as $item) {
	$channel->removeChild($item);
}

shuffle($allitems);

foreach ($allitems as $item) {
	$channel->appendChild($item);
	}

print $dom->saveXML();

}

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.