File: xmlrpc.stub.php

package info (click to toggle)
php-xmlrpc 3%3A1.0.0~rc3-6
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 648 kB
  • sloc: ansic: 5,180; xml: 153; php: 17; makefile: 3
file content (35 lines) | stat: -rw-r--r-- 1,156 bytes parent folder | download | duplicates (2)
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 {}