我使用XMLReader解析一个大文件,然后使用XPATH和输出缓冲功能来显示搜索结果。
$reader = new XMLReader;
$reader->open('products.xml');
$dom = new DOMDocument;
$xpath = new DOMXpath($dom);
while ($reader->read() && $reader->name !== 'product') {
continue;
}
while ($reader->name === 'product') {
$node = $dom->importNode($reader->expand(), TRUE);
if ($xpath->evaluate('number(price)', $node) > $price_submitted) {
$nameArray[] = $name;
$category = $xpath->evaluate('string(@category)', $node);
$name = $xpath->evaluate('string(name)', $node);
$price = $xpath->evaluate('number(price)', $node);
这是输出缓冲在while循环中开始的地方
ob_start();
echo "Category: " . $category . ". ";
echo "Name: " . $name . ". ";
echo "Price: " . $price . ". ";
echo "<br>";
$output = ob_get_contents();
ob_end_clean();
}
$reader->next('product');
}
然后在页面的不同区域显示搜索结果。但只显示一个搜索结果。任何建议。
答案 0 :(得分:1)
$output .= ob_get_contents();
你需要一个等于一段时间才能将$ output的值与ob_get_contents()结合起来。
你怎么拥有它,你只得到了最后一个,因为$ output被设置为ob_get_contents而不是组合。