WEB开发网
开发学院WEB开发PHP PHP利用RSS订阅别处文章 阅读

PHP利用RSS订阅别处文章

 2012-12-22 15:32:23 来源:WEB开发网   
核心提示:<html> <head> <title>XML</title> </head> <body> <?php $dom = simplexml_load_file("http://rss.sina.com.cn/news
<html>
<head>
<title>XML</title>
</head>
<body>
<?php
$dom = simplexml_load_file("http://rss.sina.com.cn/news/world/focus15.xml");
//var_dump($dom);
?>
<h2>The example of RSS</h2>
<ul>
<?php
foreach($dom->channel->item as $item)
{
print("<li>");
print("<a href='$item->link'>");
print($item->title);
print("</a>");
print("</li>");
}
?>
</ul>
</body>
</html>
注意这个函数:simplexml_load_file() ; 它既可以读本地的xml文件,也可以读网络上的xml。

运行结果:

上一页  1 2 

Tags:PHP 利用 RSS

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接