libxml_get_errors Obtém um array de erros &reftitle.description; arraylibxml_get_errors Obtém um array de erros. &reftitle.parameters; &no.function.parameters; &reftitle.returnvalues; Retorna um array com objetos LibXMLError se houver algum erro no buffer, ou um array vazio caso contrário. &reftitle.examples; Um exemplo de <function>libxml_get_errors</function> Este exemplo demonstra como construir um simples manipulador de erro da libxml. PHP: Por Trás do Analisador XML; $doc = simplexml_load_string($xmlstr); $xml = explode("\n", $xmlstr); if ($doc === false) { $errors = libxml_get_errors(); foreach ($errors as $error) { echo display_xml_error($error, $xml); } libxml_clear_errors(); } function display_xml_error($error, $xml) { $return = $xml[$error->line - 1] . "\n"; $return .= str_repeat('-', $error->column) . "^\n"; switch ($error->level) { case LIBXML_ERR_WARNING: $return .= "Alerta $error->code: "; break; case LIBXML_ERR_ERROR: $return .= "Erro $error->code: "; break; case LIBXML_ERR_FATAL: $return .= "Erro fatal $error->code: "; break; } $return .= trim($error->message) . "\n Line: $error->line" . "\n Column: $error->column"; if ($error->file) { $return .= "\n Arquivo: $error->file"; } return "$return\n\n--------------------------------------------\n\n"; } ?> ]]> &example.outputs; PHP: Por Trás do Analisador ----------------------------------------------^ Erro fatal 76: Opening and ending tag mismatch: titles line 4 and title Line: 4 Column: 46 -------------------------------------------- ]]> &reftitle.seealso; libxml_get_last_error libxml_clear_errors