Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 17142 программиста и 1835 роботов. Сейчас ищут 1575 программистов ...
Example
Вернуться к: XML_RSS
Example
Example – Example for the usage of XML_RSS
The following script fetches the latest headlines from Slashdot.org via RSS.
Fetching headlines from Slashdot
<?php
require_once "XML/RSS.php";
$rss =& new XML_RSS("http://rss.slashdot.org/Slashdot/slashdot");
$rss->parse();
echo "<h1>Headlines from <a href=\"http://slashdot.org\">Slashdot</a></h1>\n";
echo "<ul>\n";
foreach ($rss->getItems() as $item) {
echo "<li><a href=\"" . $item['link'] . "\">" . $item['title'] . "</a></li>\n";
}
echo "</ul>\n";
?>
Вернуться к: XML_RSS