The libXMLError class
Introduction
(PHP 5 >= 5.1.0, PHP 7)
Contains various information about errors thrown by libxml. The error codes are described within the official » xmlError API documentation.
Class synopsis
libXMLError {
/* Properties */
}Properties
- level
-
the severity of the error (one of the following constants:
LIBXML_ERR_WARNING
,LIBXML_ERR_ERROR
orLIBXML_ERR_FATAL
) - code
-
The error's code.
- column
-
The column where the error occurred.
Note:
This property isn't entirely implemented in libxml and therefore
0
is often returned. - message
-
The error message, if any.
- file
-
The filename, or empty if the XML was loaded from a string.
- line
-
The line where the error occurred.
© 1997–2020 The PHP Documentation Group
Licensed under the Creative Commons Attribution License v3.0 or later.
https://www.php.net/manual/en/class.libxmlerror.php