Home  >  Article  >  Backend Development  >  How to parse RSS with PHP_PHP tutorial

How to parse RSS with PHP_PHP tutorial

WBOY
WBOYOriginal
2016-07-13 10:04:54896browse

How PHP parses RSS

This article mainly introduces the method of PHP parsing RSS. It analyzes the principle of PHP parsing RSS and the operation skills of XML files. Friends who need it You can refer to the following

The example in this article describes the method of parsing RSS in PHP. Share it with everyone for your reference. The details are as follows:

1. The php code is as follows:

The code is as follows:

require "XML/RSS.php";
$rss = new XML_RSS("http://php.net/news.rss");
$rss->parse();
foreach($rss->getItems() as $item) {
print_r($item);
}
?>
2. The RSS.php code is as follows:

The code is as follows:

$database = "nameofthedatabase";
$dbconnect = mysql_pconnect(localhost, dbuser, dbpassword);
mysql_select_db($database, $dbconnect);
$query = "select link, headline, description from `headlines` limit 15";
$result = mysql_query($query, $dbconnect);
while ($line = mysql_fetch_assoc($result))
{
$return[] = $line;
}
$now = date("D, d M Y H:i:s T");
$output = "


Our Demo RSS
http://www.tracypeterson.com/RSS/RSS.php
A Test RSS
en-us
$now
$now
http://someurl.com
you@youremail.com
you@youremail.com
";
foreach ($return as $line)
{
$output .= "".htmlentities($line['headline'])."
".htmlentities($line['link'])."
".htmlentities(strip_tags($line['description']))."
";
}
$output .= "
";
header("Content-Type: application/rss+xml");
echo $output;
?>

I hope this article will be helpful to everyone’s PHP programming design.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/963984.htmlTechArticleHow PHP parses RSS This article mainly introduces the method of PHP parsing RSS, and analyzes the method of PHP parsing RSS with examples. For the principles and XML file operation skills, friends in need can refer to the examples in this article...
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn