我需要读取大小约1 GB的XML文件。我的XML:
<products>
<product>
<categoryName>Kable i konwertery AV</categoryName>
<brandName>Belkin</brandName>
<productCode>AV10176bt1M-BLK</productCode>
<productId>5616488</productId>
<productFullName>Kabel Belkin Kabel HDMI Ultra HD High Speed 1m-AV10176bt1M-BLK</productFullName>
<productEan>0745883767465</productEan>
<productEuroPriceNetto>59.71</productEuroPriceNetto>
<productFrontendPriceNetto>258.54</productFrontendPriceNetto>
<productFastestSupplierQuantity>23</productFastestSupplierQuantity>
<deliveryEstimatedDays>2</deliveryEstimatedDays>
</product>
<product>
<categoryName>Telewizory</categoryName>
<brandName>Sony</brandName>
<productCode>KDL32WD757SAEP</productCode>
<productId>1005662</productId>
<productFullName>Telewizor Sony KDL-32WD757 SAEP</productFullName>
<productEan></productEan>
<productEuroPriceNetto>412.33</productEuroPriceNetto>
<productFrontendPriceNetto>1785.38</productFrontendPriceNetto>
<productFastestSupplierQuantity>11</productFastestSupplierQuantity>
<deliveryEstimatedDays>6</deliveryEstimatedDays>
</product>
<product>
<categoryName>Kuchnie i akcesoria</categoryName>
<brandName>Brimarex</brandName>
<productCode>1566287</productCode>
<productId>885156</productId>
<productFullName>Brimarex Drewniane owoce, Kiwi - 1566287</productFullName>
<productEan></productEan>
<productEuroPriceNetto>0.7</productEuroPriceNetto>
<productFrontendPriceNetto>3.05</productFrontendPriceNetto>
<productFastestSupplierQuantity>7</productFastestSupplierQuantity>
<deliveryEstimatedDays>3</deliveryEstimatedDays>
</product>
</products>
我使用XML阅读器。
$reader = new XMLReader();
$reader->open($url);
$count = 0;
while($reader->read()) {
if($reader->nodeType == XMLReader::ELEMENT)
$nodeName = $reader->name;
if(($reader->nodeType == XMLReader::TEXT || $reader->nodeType == XMLReader::CDATA)) {
if ($nodeName == 'categoryName') $categoryName = $reader->value;
if ($nodeName == 'brandName') $brandName = $reader->value;
if ($nodeName == 'productCode') $productCode = $reader->value;
if ($nodeName == 'productId') $productId = $reader->value;
if ($nodeName == 'productFullName') $productFullName = $reader->value;
if ($nodeName == 'productEan') $productEan = $reader->value;
if ($nodeName == 'productEuroPriceNetto') $productEuroPriceNetto = $reader->value;
if ($nodeName == 'productFastestSupplierQuantity') $productFastestSupplierQuantity = $reader->value;
if ($nodeName == 'deliveryEstimatedDays') $deliveryEstimatedDays = $reader->value;
}
if($reader->nodeType == XMLReader::END_ELEMENT && $reader->name == 'product') {
$count++;
}
}
$reader->close();
一切正常,除了一个问题...当缺少某些值时,例如输出中的<productEan></productEan>
我从前一个非空标记获得一个值,直到另一个非空标记。
例如,如果前一个节点在示例中是<productEan>0745883767465</productEan>
,另外两个<productEan></productEan>
在输出数组中是空的,我得到相同的值,0745883767465
。
解决这个问题的正确方法是什么?或者也许有人有工作解决方案......
这里有一些代码可以满足您的需求。它在遇到TEXT
或CDATA
节点时保存每个元素的值,然后在它到达END_ELEMENT
时存储它。那时保存的值设置为''
,因此如果没有找到元素的值,它将获得一个空字符串(如果您愿意,可以将其更改为null
)。它还处理自动关闭标签,例如<brandName />
,当找到isEmptyElement
节点时使用ELEMENT
检查。它利用PHPs变量变量来避免代码中的if ($nodename == ...)
的长序列,但也使用数组来存储每个产品的值,从长远来看,我认为这是一个更好的解决方案。
$reader = new XMLReader();
$reader->xml($xml);
$count = 0;
$this_value = '';
$products = array();
while($reader->read()) {
switch ($reader->nodeType) {
case XMLReader::ELEMENT:
// deal with self-closing tags e.g. <productEan />
if ($reader->isEmptyElement) {
${$reader->name} = '';
$products[$count][$reader->name] = '';
}
break;
case XMLReader::TEXT:
case XMLReader::CDATA:
// save the value for storage when we get to the end of the element
$this_value = $reader->value;
break;
case XMLReader::END_ELEMENT:
if ($reader->name == 'product') {
$count++;
print_r(array($categoryName, $brandName, $productCode, $productId, $productFullName, $productEan, $productEuroPriceNetto, $productFrontendPriceNetto, $productFastestSupplierQuantity, $deliveryEstimatedDays));
}
elseif ($reader->name != 'products') {
${$reader->name} = $this_value;
$products[$count][$reader->name] = $this_value;
// set this_value to a blank string to allow for empty tags
$this_value = '';
}
break;
case XMLReader::WHITESPACE:
case XMLReader::SIGNIFICANT_WHITESPACE:
default:
// nothing to do
break;
}
}
$reader->close();
print_r($products);
我已经省略了输出,因为它很长但你可以在这个demo on 3v4l.org中看到运行中的代码。
如果不是使用单个值,而是将值存储在详细信息数组中,则可以在处理完每个元素后将数组空白...
$reader->open($url);
$count = 0;
$data = [];
while($reader->read()) {
if($reader->nodeType == XMLReader::ELEMENT)
$nodeName = $reader->name;
if(($reader->nodeType == XMLReader::TEXT || $reader->nodeType == XMLReader::CDATA)) {
$data[$nodeName] = $reader->value;
}
if($reader->nodeType == XMLReader::END_ELEMENT && $reader->name == 'product') {
// Process data
echo ($data['productEan']??"Empty").PHP_EOL;
// Reset
$data = [];
$count++;
}
}
$reader->close();
哪个与您的测试数据给出...
0745883767465
Empty
Empty
重置每个循环上的所有变量。似乎如果你没有为它分配任何值,它将获得先前分配的值。
<?php
while($reader->read()) {
$categoryName =
$brandName =
$productCode =
$productId =
$productFullName =
$productEan =
$productEuroPriceNetto =
$productFastestSupplierQuantity =
$deliveryEstimatedDays = '';
//... code
}
?>