NAME ^

php_xmlrpc.pir - PHP xmlrpc Library

DESCRIPTION ^

Functions ^

array xmlrpc_decode(string xml [, string encoding])
Decodes XML into native PHP typesNOT IMPLEMENTED.
array xmlrpc_decode_request(string xml, string& method [, string encoding])
Decodes XML into native PHP typesNOT IMPLEMENTED.
string xmlrpc_encode(mixed value)
Generates XML for a PHP valueNOT IMPLEMENTED.
string xmlrpc_encode_request(string method, mixed params)
Generates XML for a method requestNOT IMPLEMENTED.
string xmlrpc_get_type(mixed value)
Gets xmlrpc type for a PHP value. Especially useful for base64 and datetime stringsNOT 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 descriptionsNOT IMPLEMENTED.
int xmlrpc_server_add_introspection_data(resource server, array desc)
Adds introspection documentationNOT IMPLEMENTED.
mixed xmlrpc_server_call_method(resource server, string xml, mixed user_data [, array output_options])
Parses XML requests and call methodsNOT IMPLEMENTED.
resource xmlrpc_server_create(void)
Creates an xmlrpc serverNOT IMPLEMENTED.
int xmlrpc_server_destroy(resource server)
Destroys server resourcesNOT IMPLEMENTED.
bool xmlrpc_server_register_introspection_callback(resource server, string function)
Register a PHP function to generate documentationNOT IMPLEMENTED.
bool xmlrpc_server_register_method(resource server, string method_name, string function)
Register a PHP function to handle method matching method_nameNOT IMPLEMENTED.
bool xmlrpc_set_type(string value, string type)
Sets xmlrpc type, base64 or datetime, for a PHP string valueNOT IMPLEMENTED.


parrot