dousi4900 2017-01-19 02:55
浏览 37

PHP Xpath不返回“实时”节点列表

Sometimes it seems that the DOMNodeList returned isn't live.

It IS live when using access like childNodes

 $children=$doc->getElementsByTagName('body')->item(0)->childNodes;
 echo $children->length;  //7
 $children->item(0)->parentNode->removeChild($children->item(0));

  echo $children->length;  //6! list is live! 

But other times the list is NOT live...

$xpath=new DOMXPath($doc);
$nodes=$xpath->query("//p");

echo $nodes->length; // 7
$nodes->item(0)->parentNode->removeChild($nodes->item(0));
echo $nodes->length; // still 7? Not live. 

XPath seems to be the major culprit. But why return a DOMNodeList if it isn't live? Why not just an array at that point?

  • 写回答

0条回答 默认 最新

    报告相同问题?

    悬赏问题

    • ¥15 关于#java#的问题:找一份能快速看完mooc视频的代码
    • ¥15 这种微信登录授权 谁可以做啊
    • ¥15 请问我该如何添加自己的数据去运行蚁群算法代码
    • ¥20 用HslCommunication 连接欧姆龙 plc有时会连接失败。报异常为“未知错误”
    • ¥15 网络设备配置与管理这个该怎么弄
    • ¥20 机器学习能否像多层线性模型一样处理嵌套数据
    • ¥20 西门子S7-Graph,S7-300,梯形图
    • ¥50 用易语言http 访问不了网页
    • ¥50 safari浏览器fetch提交数据后数据丢失问题
    • ¥15 matlab不知道怎么改,求解答!!