| 12345678910111213141516171819202122232425 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!-- Reviewed: no -->
- <!-- EN-Revision: 24249 -->
- <sect1 id="zend.server.introduction">
- <title>導入</title>
- <para>
- <classname>Zend_Server</classname> 系のクラス群は、さまざまなサーバクラスの機能を提供します。
- たとえば
- <classname>Zend_XmlRpc_Server</classname>、<classname>Zend_Rest_Server</classname>、
- <classname>Zend_Json_Server</classname> そして <classname>Zend_Soap_Wsdl</classname> などがあります。
- <classname>Zend_Server_Interface</classname> は、<acronym>PHP</acronym> 5 の
- <code>SoapServer</code> クラスをまねたものです。すべてのサーバクラスは、
- このインターフェイスを実装することで標準のサーバ <acronym>API</acronym> を提供しています。
- </para>
- <para>
- <classname>Zend_Server_Reflection</classname> は、
- 関数やクラスの内容を知るための標準的な仕組みを提供するもので、
- サーバクラス群でのコールバックのために使用します。また、
- <classname>Zend_Server_Interface</classname> の <methodname>getFunctions()</methodname>
- や <methodname>loadFunctions()</methodname> で使用できる形式のデータを提供します。
- </para>
- </sect1>
- <!--
- vim:se ts=4 sw=4 et:
- -->
|