我有一个错误的 xml 提要。它切断了一些节点,它们被破坏了,我收到以下错误消息 -
Warning: DOMDocument::load() [function.DOMDocument-load]: Premature end of data in tag
hotelDescription line 30760 in /srv/disk9/561574/www/source.xml, line: 30760 in /srv/disk9/561574/www/file.php on line 22
Warning: DOMDocument::load() [function.DOMDocument-load]: Premature end of data in tag product line 30741 in /srv/disk9/561574/www/source.xml, line: 30760 in /srv/disk9/561574/www/file.php on line 22
Warning: DOMDocument::load() [function.DOMDocument-load]: Premature end of data in tag products line 2 in /srv/disk9/561574/www/source.xml, line: 30760 in /srv/disk9/561574/www/file.php on line 22
0
我已经设置了一个错误处理程序,但我不确定如何或者是否有可能在导致错误时忽略一个元素?
/* load the file on the DOM*/
$dom = new DomDocument();
$dom->load($filename);
if (!$dom->load($filename)) {
foreach (libxml_get_errors() as $error) {
// handle errors here
}
libxml_clear_errors();
}
非常感谢任何帮助,谢谢。