$file = simplexml_load_file($url); {
foreach($file->entry as $post) {
$row = simplexml_load_string($post->asXML()); // after adding this line, i get error message
$links = $row->xpath('//link[@rel="alternate" and @type="text/html"]');
echo (string) $post->title;
echo (string) $links[0]['href'];
我使用这个脚本来解析原子提要。起初不起作用,因为它无法正确传递链接的 href 属性。我添加了$row
,即使它有效,它也会给出一个错误:“未定义条目上 etag 的命名空间前缀 gd”。我搜索了几个小时,找不到解决方案。我是如此接近。