我有一堆XML文件,我正在使用XMLReader加载到我的脚本中,创建DOM对象然后转换为Simplexml.
问题是XML文件之一使用CDATA SIMPLEXML忽略并且通常使用SIMPLEXML_LOAD_FILE我会添加LIBXML_NOCDATA参数但是因为我使用simplexml_import_dom我无法弄清楚如何忽略下面的sceanrio中的CDATA.
有什么想法吗?
非常感谢
布雷特
$file = 'test.xml';
$reader = new XMLReader();
$reader->open($file);
while ($reader->read())
{
// are we in a product?
if ($reader->nodeType == XMLReader::ELEMENT &&
strtolower($reader->localName) == 'product')
{
if (!$node = $reader->expand()) {
//do nothing
}
else {
// expand the node into a DOMNode
// Convert to SimpleXML via DOM, messy but SimpleXML is soo much nicer.
$dom = new DomDocument();
$dom->appendChild($dom->importNode($node, true));
$products = simplexml_import_dom($dom);
// do whatever we want to do with the product data
}
解决方法:
你可以尝试类似的东西:
<?php
$str = $dom->saveXML();
$product = simplexml_load_string($str, 'SimpleXMLElement', LIBXML_NOCDATA | LIBXML_NOBLANKS);