我需要在saymfony中管理xml文档。
将xml放入Crawler()实例,修改现有节点,然后将xml放入文件中,我没有任何问题。
但我无法添加新节点。
当我尝试将一个带有appendChild方法的新节点添加到父节点时,我得到了:
错误的文档错误
当我尝试向抓取工具添加方法时,我得到了:
无法向抓取工具添加两个不同的来源?
如何将简单节点添加到现有抓取工具?
感谢您的回复
答案 0 :(得分:0)
我遇到了类似的问题,我试过了:
$crawler=new Crawler($someHtml);
$crawler->add('<element />');
得到了
禁止在同一个抓取工具中从多个文档中附加DOM节点。
使用DOMDocument
,您可以使用自己的createElement
方法制作节点,然后使用appendChild
或其他方式将它们附加到文档中。但由于Crawler
似乎没有像createElement这样的东西,我提出的解决方案是用本机dom文档初始化Crawler,做你想用Crawler做的任何事情,但是然后使用dom文档在需要添加节点时作为“节点工厂”。
我的特殊情况是我需要检查文档是否有head
,并添加一个(特别是将其添加到body标签上方),如果不是:
$doc = new \DOMDocument;
$doc->loadHtml("<html><body bgcolor='red' /></html>");
$crawler = new Crawler($doc);
if ($crawler->filter('head')->count() == 0) {
//use native dom document to make a head
$head = $doc->createElement('head');
//add it to the bottom of the Crawler's node list
$crawler->add($head);
//grab the body
$body = $crawler
->filter('body')
->first()
->getNode(0);
//use insertBefore (http://php.net/manual/en/domnode.insertbefore.php)
//to get the head and put it above the body
$body->parentNode->insertBefore($head, $body);
}
echo $crawler->html();
产量
<head></head>
<body bgcolor="red"></body>
看起来有点令人费解,但它确实有效。我正在处理HTML,但我认为XML解决方案几乎是一样的。