Файл: index.php
Строк: 18
<?php
header("Content-Type: text/html; charset=utf-8"); // кодировка
$url = 'http://lenta.ru/rss/news'; // откуда парсим
/* functions
* url- откуда парсим
* $maxItems - кол записей выводимых
* $begin - выдиление новости верхний див
* $end - нижний див
*/
$maxItems = 15;
$rss = simplexml_load_file($url);
$i=0;
if($rss){
$items = $rss->channel->item;
$num = (int)$rss->count;
foreach($items as $item){
if($i==$maxItems) return $out;
else
echo '<b>'.$item->title.'</b> <small>'.$item->pubDate.'</small><br/>
<img src="'.(string)$item->enclosure->attributes()->url .'"><br/>'.
$item->description.' <br/><hr/>';
$i++;
}
}