PHP
downloads | documentation | faq | getting help | mailing lists | wiki | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

libxml Functions> <Predefined Constants
Last updated: Fri, 21 Nov 2008

view this page in

The libXMLError class

Introduction

Contains various informations about errors thrown by libxml.

Class synopsis

libXMLError
libXMLError {
/* Properties */
public int $level ;
public int $code ;
public int $column ;
public string $message ;
public string $file ;
public int $line ;
}

Properties

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.



add a note add a note User Contributed Notes
libXMLError
php at jordie dot org
16-Oct-2008 08:43
If you want to be able to check what the error codes are, they are listed on http://www.xmlsoft.org/html/libxml-xmlerror.html under "Enum xmlParserErrors".

libxml Functions> <Predefined Constants
Last updated: Fri, 21 Nov 2008
 
 
show source | credits | stats | sitemap | contact | advertising | mirror sites