Php/docs/class.libxmlerror
来自菜鸟教程
(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.
类摘要
libXMLError {
public
int
$level
public
int
$code
public
int
$column
public
string
$message
public
string
$file
public
int
$line
}
属性
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.
/* 属性 */