fix php 5.6 in docker dev env (#1740)
[openemr.git] / vendor / zendframework / zend-server / doc / book / intro.md
blobc0b5391c535dd6a6ed161371df479efc0fefa398
1 # Introduction
3 The zend-server family of classes provides functionality for the various server
4 classes, including [zend-xmlrpc](https://zendframework.github.io/zend-xmlrpc) and
5 [zend-json-server](https://zendframework.github.io/zend-json-server/).
6 `Zend\Server\Server` provides an interface that mimics PHP’s `SoapServer` class;
7 all RPC-style server classes should implement this interface in order to provide a
8 standard server API.
10 The `Zend\Server\Reflection` tree provides a standard mechanism for performing
11 function and class introspection for use as callbacks with the server classes,
12 and provides data suitable for use with `Zend\Server\Server`'s `getFunctions()`
13 and `loadFunctions()` methods.