mirror of
https://github.com/php/pecl-networking-xmlrpc.git
synced 2026-03-23 23:02:07 +01:00
36 lines
1.1 KiB
PHP
36 lines
1.1 KiB
PHP
<?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 {}
|