使用PHP验证XML文件

时间:2010-08-09 20:35:33

标签: php xml

我正在使用DOMDocument进行xml文件验证。验证67MB xml文件需要30多分钟。有没有其他方法可以改善这个检查时间?

2 个答案:

答案 0 :(得分:1)

你试过XMLReader吗?我记得这个相当不错,但我认为我没有测试任何大到67 MB的东西。

答案 1 :(得分:0)

try {
    libxml_use_internal_errors(true);
    $oXml = new SimpleXMLElement($sXml, LIBXML_DTDVALID);
} catch (Exception $e) {
    $aErrors = libxml_get_errors();
}