doutuoben6908 2013-08-13 20:55
浏览 168
已采纳

在PHP中使用XPath和DOM获取表格单元格TD值

I need to access table cell values via DOM / PHP. The web page is loaded into $myHTML. I have identified the XPath as :

//*[@id="main-content-inner"]/div[2]/div[1]/div/div/table/tbody/tr/td[1]

I want to get the text of the value in the cell as follows:

$dom = new DOMDocument();
$dom->loadHTML($myHTML);    
$xpath = new DOMXPath($dom);    
$myValue = $xpath->query('//*[@id="main-content-inner"]/div[2]/div[1]/div/div/table/tbody/tr/td[1]');

echo $myValue->nodeValue;

But I am getting "Undefined Property: DOMNodeList::$nodeValue error. How do I retrieve the value of this table cell? I have tried various techniques from stackoverflow with no luck.

  • 写回答

1条回答 默认 最新

  • doujuyang1764 2013-08-13 21:04
    关注

    DOMXPath::query() returns a DOMNodeList, even if there's only one match.

    If you know for sure you have a match there, you can use

    echo $myValue->item(0)->nodeValue;
    

    But if you want to be bullet proof, you better check the length in advance, e.g.

    if ($myValue->length > 0) {
        echo $myValue->item(0)->nodeValue;
    } else {
        //No such cell. What now?
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 有赏,i卡绘世画不出
  • ¥15 如何用stata画出文献中常见的安慰剂检验图
  • ¥15 c语言链表结构体数据插入
  • ¥40 使用MATLAB解答线性代数问题
  • ¥15 COCOS的问题COCOS的问题
  • ¥15 FPGA-SRIO初始化失败
  • ¥15 MapReduce实现倒排索引失败
  • ¥15 ZABBIX6.0L连接数据库报错,如何解决?(操作系统-centos)
  • ¥15 找一位技术过硬的游戏pj程序员
  • ¥15 matlab生成电测深三层曲线模型代码