This article is followed by the XML file operations using PHP. RSS is a form based on XML. its specific specifications are as follows (in the format of the captured Sina RSS subscription channel): input: http://rss.sina.com.cn/news/world/focus15.xml?page source code can be viewed ...syntaxhig this article is next to using PHP to operate XML files. RSS is a form based on XML. its specific specifications are as follows (in the format of the captured Sina RSS subscription channel): input: http://rss.sina.com.cn/news/world/focus15.xml view page source code can see the structure of RSS: [plain] <! [CDATA [international news-Sina news]> <! [CDATA [News Center-International News]> Http://news.sina.com.cn/world Http://www.sinaimg.cn/home/deco/2009/0330/logo_home_news.gif 国际新闻-焦点新闻 Http://news.sina.com.cn/491/2008/0827/1.html Zh-cn WWW. SINA. COM. CN 5 Copyright 1996 - 2012 SINA Inc. All Rights Reserved Sat, 22 Dec 2012 05:32:05 GMT <! [CDATA [111 countries support the suspension of the use of the death penalty. China, the United States, and other 41 countries oppose it]> Http://go.rss.sina.com.cn/redirect.php? Url = http://news.sina.com.cn/w/2012-12-22/120825871683.shtmlWWW. SINA. COM. CN Http://go.rss.sina.com.cn/redirect.php? Url = http://news.sina.com.cn/w/2012-12-22/120825871683.shtml 国际新闻-焦点新闻 Sat, 22 Dec 2012 04:08:09 GMT Www.2cto.com 【法新社联合国12月20日电】周四,在联大讨论人权问题的主旨会议上,有创纪录的111个国家投票支持暂缓使用死刑。 虽然这次投票在法律上不具备约束力,但是人权活动分子说,每两年举行一次的表决,是向那些依然保留死刑的国家发出的强烈信号,这些数量在逐步减少的国家.... What is the meaning of the specific standard information? according to the label content, we can easily know. below we will write an rss feed. php to read the xml and obtain the above article: [php] XML The example of RSS
Channel-> item as $ item) {print ("
- "); Print (" link ">"); print ($ item-> title); print (""); print ("
") ;}?>
Note this function: simplexml_load_file (); it can read both the local xml file and the xml on the network.