Zend_Server.xml 1.4 KB

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