domDocument提取数据

时间:2013-04-23 08:48:33

标签: php domdocument

我有一个非常简单的代码与domDocumet,但它有一个我无法解决的错误:

 function getTagXML($mensaje, $tagname){

          $dom = new domDocument('1.0', 'UTF-8');
          libxml_use_internal_errors(true);
          // load the html into the object ***/
          $dom->loadHTML($mensaje);

          //discard white space
          $dom->preserveWhiteSpace = false;
          $nodeList= $dom->getElementsByTagName($tagname); // here u use your desired tag     
          $node = $nodeList->item(0);

          $item = trim($node->nodeValue);
          libxml_clear_errors();

          return $item;
 }

我收到了错误:

Notice: Trying to get property of non-object in line 82:

第82行:

$item = trim($node->nodeValue);

1 个答案:

答案 0 :(得分:1)

错误消息表示$nodeList不是对象,这意味着$dom->getElementsByTagName($tagname)返回了NULL

基于your other question我会假设发生这种情况是因为您的XML文档格式错误,即缺少根节点。