mirror of
https://github.com/php/php-src.git
synced 2026-04-02 21:52:36 +02:00
36 lines
1.1 KiB
PHP
36 lines
1.1 KiB
PHP
<?php
|
|
|
|
/** @generate-function-entries */
|
|
|
|
final class XmlRpcServer
|
|
{
|
|
}
|
|
|
|
function xmlrpc_encode($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, $params, array $output_options = UNKNOWN): ?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, $user_data, array $output_options = UNKNOWN): 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 {}
|