在http://feeds.feedburner.com/rb286中,有很多图片。但是,当我使用 simplXmlElement 将其转换为 xml 对象时,我无法看到图像。我的代码:
if (function_exists("curl_init")){
$ch=curl_init();
curl_setopt($ch,CURLOPT_URL,"http://feeds.feedburner.com/rb286");
curl_setopt($ch,CURLOPT_RETURNTRANSFER,1);
$data=curl_exec($ch);
curl_close($ch);
//print_r($data); //here i'm able to see the images
$doc=new SimpleXmlElement($data);
print_r($doc); //here i'm not able to see the images
}
有人可以告诉我转换为 xml 对象后如何访问图像吗?谢谢你。