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