Ben 25 maddelik bir RSS beslemesi veri okumaya çalışıyorum. Ben HTTP üzerinden RSS dosyası talep ettiğinde sadece 20 ürün olduğunu söyledi.
function test($location)
{
$doc = new DomDocument();
$doc->load($location);
$items = $doc->getElementsByTagName('item');
return $items->length;
}
// Prints 20
echo test('http://www.reddit.com/r/programming/new/.rss?after=t3_');
// Prints 25
echo test('programming.xml');
Ben RSS ile aynı sonucu yanı sıra diğer subreddits beslemeleri denedim.