Home > php教程 > PHP源码 > body text

SimpleXML和XMLReader 解析RSSFeed

PHP中文网
Release: 2016-05-25 17:11:46
Original
1058 people have browsed it

<?php
function load_file($url) { 
 $ch = curl_init($url); 
 #Return http response in string 
 curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); 
 $xml = simplexml_load_string(curl_exec($ch)); 
 return $xml; 
}
 $feedurl = &#39;http://site.com/feed/&#39;; 
 $rss = load_file($feedurl); 
 foreach ($rss->channel->item as $item) { 
 echo"<h2>". $item->title ."</h2>"; 
 echo"<p>". $item->description ."</p>"; 
}
?>
Copy after login


<?php
$xml= new XMLReader();
$xml->open(&#39;example.xml&#39;);
while($xml->read()){
switch($xml->nodeType){
 case 1:
 echo $xml->name."<br>";
break;
 case 15 :
 echo"/".$xml->name."<br>";
break;
 case 3:
 echo"[".trim($xml->value)."]<br>";
break;
 case 14:
break;
}
}
?>
Copy after login



source:php.cn
Statement of this Website
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
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!