NAME ^

php_xml.pir - PHP xml Library

DESCRIPTION ^

Functions ^

string utf8_decode(string data)
Converts a UTF-8 encoded string to ISO-8859-1NOT IMPLEMENTED.
string utf8_encode(string data)
Encodes an ISO-8859-1 string to UTF-8NOT IMPLEMENTED.
string xml_error_string(int code)
Get XML parser error stringNOT IMPLEMENTED.
int xml_get_current_byte_index(resource parser)
Get current byte index for an XML parserNOT IMPLEMENTED.
int xml_get_current_column_number(resource parser)
Get current column number for an XML parserNOT IMPLEMENTED.
int xml_get_current_line_number(resource parser)
Get current line number for an XML parserNOT IMPLEMENTED.
int xml_get_error_code(resource parser)
Get XML parser error codeNOT IMPLEMENTED.
int xml_parse(resource parser, string data [, int isFinal])
Start parsing an XML documentNOT IMPLEMENTED.
int xml_parse_into_struct(resource parser, string data, array &struct, array &index)
Parsing a XML documentNOT IMPLEMENTED.
resource xml_parser_create([string encoding])
Create an XML parserNOT IMPLEMENTED.
resource xml_parser_create_ns([string encoding [, string sep]])
Create an XML parserNOT IMPLEMENTED.
int xml_parser_free(resource parser)
Free an XML parserNOT IMPLEMENTED.
int xml_parser_get_option(resource parser, int option)
Get options from an XML parserNOT IMPLEMENTED.
int xml_parser_set_option(resource parser, int option, mixed value)
Set options in an XML parserNOT IMPLEMENTED.
int xml_set_character_data_handler(resource parser, string hdl)
Set up character data handlerNOT IMPLEMENTED.
int xml_set_default_handler(resource parser, string hdl)
Set up default handlerNOT IMPLEMENTED.
int xml_set_element_handler(resource parser, string shdl, string ehdl)
Set up start and end element handlersNOT IMPLEMENTED.
int xml_set_end_namespace_decl_handler(resource parser, string hdl)
Set up character data handlerNOT IMPLEMENTED.
int xml_set_external_entity_ref_handler(resource parser, string hdl)
Set up external entity reference handlerNOT IMPLEMENTED.
int xml_set_notation_decl_handler(resource parser, string hdl)
Set up notation declaration handlerNOT IMPLEMENTED.
int xml_set_object(resource parser, object &obj)
Set up object which should be used for callbacksNOT IMPLEMENTED.
int xml_set_processing_instruction_handler(resource parser, string hdl)
Set up processing instruction (PI) handlerNOT IMPLEMENTED.
int xml_set_start_namespace_decl_handler(resource parser, string hdl)
Set up character data handlerNOT IMPLEMENTED.
int xml_set_unparsed_entity_decl_handler(resource parser, string hdl)
Set up unparsed entity declaration handlerNOT IMPLEMENTED.


parrot