NAME ^

php_xml.pir - PHP xml Library

DESCRIPTION ^

Functions ^

string utf8_decode(string data)

Converts a UTF-8 encoded string to ISO-8859-1

NOT IMPLEMENTED.

string utf8_encode(string data)

Encodes an ISO-8859-1 string to UTF-8

NOT IMPLEMENTED.

string xml_error_string(int code)

Get XML parser error string

NOT IMPLEMENTED.

int xml_get_current_byte_index(resource parser)

Get current byte index for an XML parser

NOT IMPLEMENTED.

int xml_get_current_column_number(resource parser)

Get current column number for an XML parser

NOT IMPLEMENTED.

int xml_get_current_line_number(resource parser)

Get current line number for an XML parser

NOT IMPLEMENTED.

int xml_get_error_code(resource parser)

Get XML parser error code

NOT IMPLEMENTED.

int xml_parse(resource parser, string data [, int isFinal])

Start parsing an XML document

NOT IMPLEMENTED.

int xml_parse_into_struct(resource parser, string data, array &struct, array &index)

Parsing a XML document

NOT IMPLEMENTED.

resource xml_parser_create([string encoding])

Create an XML parser

NOT IMPLEMENTED.

resource xml_parser_create_ns([string encoding [, string sep]])

Create an XML parser

NOT IMPLEMENTED.

int xml_parser_free(resource parser)

Free an XML parser

NOT IMPLEMENTED.

int xml_parser_get_option(resource parser, int option)

Get options from an XML parser

NOT IMPLEMENTED.

int xml_parser_set_option(resource parser, int option, mixed value)

Set options in an XML parser

NOT IMPLEMENTED.

int xml_set_character_data_handler(resource parser, string hdl)

Set up character data handler

NOT IMPLEMENTED.

int xml_set_default_handler(resource parser, string hdl)

Set up default handler

NOT IMPLEMENTED.

int xml_set_element_handler(resource parser, string shdl, string ehdl)

Set up start and end element handlers

NOT IMPLEMENTED.

int xml_set_end_namespace_decl_handler(resource parser, string hdl)

Set up character data handler

NOT IMPLEMENTED.

int xml_set_external_entity_ref_handler(resource parser, string hdl)

Set up external entity reference handler

NOT IMPLEMENTED.

int xml_set_notation_decl_handler(resource parser, string hdl)

Set up notation declaration handler

NOT IMPLEMENTED.

int xml_set_object(resource parser, object &obj)

Set up object which should be used for callbacks

NOT IMPLEMENTED.

int xml_set_processing_instruction_handler(resource parser, string hdl)

Set up processing instruction (PI) handler

NOT IMPLEMENTED.

int xml_set_start_namespace_decl_handler(resource parser, string hdl)

Set up character data handler

NOT IMPLEMENTED.

int xml_set_unparsed_entity_decl_handler(resource parser, string hdl)

Set up unparsed entity declaration handler

NOT IMPLEMENTED.


parrot