Zdravím, s php nejsem moc kamarád, proto Vás žádám o menší radu jak do tohoto kódu přidat omezení na počet slov/znaků, které feedburner vyvolá.
<?php
$feed_burner_url = 'http://feeds.feedburner.com/example';
$doc = new DOMDocument();
$doc->load($feed_burner_url);
$feed = array();
foreach ($doc->getElementsByTagName('item') as $node) {
$item = array (
'title' => $node->getElementsByTagName('title')->item(0)->nodeValue,
'link' => $node->getElementsByTagName('link')->item(0)->nodeValue,
'description' => $node->getElementsByTagName('description')->item(0)->nodeValue,
'pubDate' => $node->getElementsByTagName('pubDate')->item(0)->nodeValue
);
array_push($feed, $item);
}
$limit = 5;
echo '<div class="fb">';
for($x=0;$x<$limit;$x++) {
echo '<ul id="facebook">';
$title = str_replace(' & ', ' & ', $feed[$x]['title']);
$link = $feed[$x]['link'];
$description = $feed[$x]['description'];
$date = date('l F d, Y', strtotime($feed[$x]['pubDate']));
echo '<li>';
echo '<div class="fb-description"> '. $description . '</div> <div class="fb-meta"> '. $date .' <a href="'. $link .'">Link</a></div>';
echo '</li> ';
echo '</ul> ';
}
echo '</div> ';
?>