1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
|
<?php
/** @generate-function-entries */
final class XmlRpcServer
{
}
function xmlrpc_encode(mixed $value): ?string {}
function xmlrpc_decode(string $xml, string $encoding = "iso-8859-1"): mixed {}
function xmlrpc_decode_request(string $xml, &$method, string $encoding = "iso-8859-1"): mixed {}
function xmlrpc_encode_request(?string $method, mixed $params, array $output_options = []): ?string {}
function xmlrpc_get_type(mixed $value): string {}
function xmlrpc_set_type(&$value, string $type): bool {}
function xmlrpc_is_fault(array $arg): bool {}
function xmlrpc_server_create(): XmlRpcServer {}
function xmlrpc_server_destroy(XmlRpcServer $server): bool {}
function xmlrpc_server_register_method(XmlRpcServer $server, string $method_name, $function): bool {}
function xmlrpc_server_call_method(XmlRpcServer $server, string $xml, mixed $user_data, array $output_options = []): mixed {}
function xmlrpc_parse_method_descriptions(string $xml): mixed {}
function xmlrpc_server_add_introspection_data(XmlRpcServer $server, array $desc): int {}
function xmlrpc_server_register_introspection_callback(XmlRpcServer $server, $function): bool {}
|