1

我有以下 rss 格式,我无法弹出“内容:编码”值。

<item>
    <title>some title</title>
    <link>some link</link>
    <pubDate>Sat, 07 Apr 2012 5:07:00 -0700</pubDate>
    <content:encoded><![CDATA[this value]]></content:encoded>
</item>

我写了这个函数,除了'content:encoded'字段给我这个错误之外,一切都很好:'注意:试图获取非对象的属性'

function rssReader($url) {
  $doc = new DOMDocument();
  $doc->load($url);
  $fields = array('title', 'description', 'link', 'pubDate', 'content:encoded');
  $nodes = array();

  foreach ($doc->getElementsByTagName('item') as $node) {
    $item = array();
    var_export($node, true);
    foreach ($fields as $field)
      $item[$field] = $node->getElementsByTagName($field)->item(0)->nodeValue;
    $nodes[] = $item;
  }

  return $nodes;
}
4

2 回答 2

2

您需要使用getElementsByTagNameNS而不是getElementsByTagNamefor'content:encoded'标签:

foreach ($fields as $field){
  if( $field == 'content:encoded' ){
      $item[$field] = $node->getElementsByTagNameNS('contentNamespaceURI','encoded')->item(0)->nodeValue;
  }else{
      $item[$field] = $node->getElementsByTagName($field)->item(0)->nodeValue;
  }
}

你可以'contentNamespaceURI'rss. 必须有类似的东西:

   xmlns:content="contentNamespaceURI"
于 2012-04-07T16:12:57.617 回答
1

这里的标签名称是“编码的”。

只需使用

$content => $node->getElementsByTagName('encoded')->item(0)->nodeValue
于 2013-08-29T05:25:58.020 回答