NAME ^

php_xmlrpc.pir - PHP xmlrpc Library

DESCRIPTION ^

Functions ^

array xmlrpc_decode(string xml [, string encoding])

Decodes XML into native PHP types

NOT IMPLEMENTED.

array xmlrpc_decode_request(string xml, string& method [, string encoding])

Decodes XML into native PHP types

NOT IMPLEMENTED.

string xmlrpc_encode(mixed value)

Generates XML for a PHP value

NOT IMPLEMENTED.

string xmlrpc_encode_request(string method, mixed params)

Generates XML for a method request

NOT IMPLEMENTED.

string xmlrpc_get_type(mixed value)

Gets xmlrpc type for a PHP value. Especially useful for base64 and datetime strings

NOT IMPLEMENTED.

bool xmlrpc_is_fault(array)

Determines if an array value represents an XMLRPC fault.

NOT IMPLEMENTED.

array xmlrpc_parse_method_descriptions(string xml)

Decodes XML into a list of method descriptions

NOT IMPLEMENTED.

int xmlrpc_server_add_introspection_data(resource server, array desc)

Adds introspection documentation

NOT IMPLEMENTED.

mixed xmlrpc_server_call_method(resource server, string xml, mixed user_data [, array output_options])

Parses XML requests and call methods

NOT IMPLEMENTED.

resource xmlrpc_server_create(void)

Creates an xmlrpc server

NOT IMPLEMENTED.

int xmlrpc_server_destroy(resource server)

Destroys server resources

NOT IMPLEMENTED.

bool xmlrpc_server_register_introspection_callback(resource server, string function)

Register a PHP function to generate documentation

NOT IMPLEMENTED.

bool xmlrpc_server_register_method(resource server, string method_name, string function)

Register a PHP function to handle method matching method_name

NOT IMPLEMENTED.

bool xmlrpc_set_type(string value, string type)

Sets xmlrpc type, base64 or datetime, for a PHP string value

NOT IMPLEMENTED.


parrot