Book/libxml-Phpdoc专题
libxml
目录
- 简介
- 安装/配置
- 预定义常量
- libXMLError — The libXMLError class
- libxml 函数
- libxml_clear_errors — Clear libxml error buffer
- libxml_disable_entity_loader — Disable the ability to load external entities
- libxml_get_errors — Retrieve array of errors
- libxml_get_last_error — Retrieve last error from libxml
- libxml_set_external_entity_loader — Changes the default external entity loader
- libxml_set_streams_context — Set the streams context for the next libxml document load or write
- libxml_use_internal_errors — Disable libxml errors and allow user to fetch error information as needed
简介
Contains various information about errors thrown by libxml. The error codes are described within the official » xmlError API documentation.
类摘要
libXMLError
class libXMLError {
/* 属性 */
public int
$level ;
public int
$code ;
public int
$column ;
public string
$message ;
public string
$file ;
public int
$line ;
}
属性
level
the severity of the error (one of the following constants:
LIBXML_ERR_WARNING, LIBXML_ERR_ERROR or
LIBXML_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.