Php/docs/class.libxmlerror
From Get docs
(PHP 5 >= 5.1.0, PHP 7)
Introduction
Contains various information about errors thrown by libxml. The error codes are described within the official » xmlError API documentation.
Class synopsis
libXMLError {
public
int
$level
public
int
$code
public
int
$column
public
string
$message
public
string
$file
public
int
$line
}
Properties
levelthe severity of the error (one of the following constants:
LIBXML_ERR_WARNING,LIBXML_ERR_ERRORorLIBXML_ERR_FATAL)codeThe error's code.
columnThe column where the error occurred.
Note:
This property isn't entirely implemented in libxml and therefore
0is often returned.messageThe error message, if any.
fileThe filename, or empty if the XML was loaded from a string.
lineThe line where the error occurred.
/* Properties */