requirements.xml 61 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947
  1. <appendix id="requirements">
  2. <title>系统需求</title>
  3. <para>
  4. 这部分描述了 Zend Framework 对系统的需求。
  5. </para>
  6. <sect1 id="requirements.version">
  7. <title>PHP 版本需求</title>
  8. <para>
  9. Zend Framework 需要 PHP 5.1.4 或更高版本。例如 <code>Countable</code>
  10. 这样一些 SPL 接口在 PHP 之前的版本中没有被正式使用。
  11. </para>
  12. <para>
  13. Zend Framework 提供了大量自动化测试,可以使用 PHPUnit 3.0 或更高版本运行。
  14. 这个版本的 PHPUnit 同样也需要 PHP 5.1.4 或更高版本。
  15. </para>
  16. <para>
  17. 虽然 Zend Framework 可以在上面提到的 PHP 版本下正确工作,但是强烈建议使用 PHP 5.2.2 或更高版本。
  18. 新版本的 PHP 有许多重要的安全更新和性能提升。
  19. </para>
  20. </sect1>
  21. <sect1 id="requirements.extensions">
  22. <title>PHP 扩展</title>
  23. <para>
  24. 下面列出了所有 PHP 内建支持的扩展,以及它们在 Zend Framework 中如何应用。
  25. 这个可以帮助了解哪个扩展需要在应用中使用。
  26. 不是每一个被 Zend Framework 使用的扩展都要应用在程序中。
  27. </para>
  28. <para>
  29. 使用方式“依赖”表示当扩展不可用时,组件或者类也不可使用。
  30. 使用方式“可选”表示当扩展不可用时,组件或者类自动使用代替方案。
  31. </para>
  32. <table frame='all'>
  33. <title>Zend Framework 使用的 PHP 扩展</title>
  34. <tgroup cols='3'>
  35. <colspec colwidth='1in'/>
  36. <colspec colwidth='1in'/>
  37. <colspec colwidth='3in'/>
  38. <thead>
  39. <row>
  40. <entry>扩展</entry>
  41. <entry>使用方式</entry>
  42. <entry>使用扩展的 Zend Framework 组件</entry>
  43. </row>
  44. </thead>
  45. <tbody>
  46. <row>
  47. <entry><ulink url="http://www.php.net/manual/zh/ref.apc.php"><code>apc</code></ulink></entry>
  48. <entry>依赖</entry>
  49. <entry><ulink url="http://framework.zend.com/manual/en/zend.cache.backends.html"><code>Zend_Cache_Backend_Apc</code></ulink></entry>
  50. </row>
  51. <row>
  52. <entry><ulink url="http://www.php.net/manual/zh/ref.bc.php"><code>bcmath</code></ulink></entry>
  53. <entry>可选</entry>
  54. <entry><ulink url="http://framework.zend.com/manual/en/zend.locale.html"><code>Zend_Locale_Math</code></ulink></entry>
  55. </row>
  56. <row>
  57. <entry><ulink url="http://pecl.php.net/package/Bitset"><code>bitset</code></ulink></entry>
  58. <entry>可选</entry>
  59. <entry><ulink url="http://framework.zend.com/manual/en/zend.search.lucene.html"><code>Zend_Search_Lucene</code></ulink></entry>
  60. </row>
  61. <row>
  62. <entry><ulink url="http://www.php.net/manual/zh/ref.bzip2.php"><code>bz2</code></ulink></entry>
  63. <entry>--</entry>
  64. <entry></entry>
  65. </row>
  66. <row>
  67. <entry><ulink url="http://www.php.net/manual/zh/ref.calendar.php"><code>calendar</code></ulink></entry>
  68. <entry>--</entry>
  69. <entry></entry>
  70. </row>
  71. <row>
  72. <entry><ulink url="http://www.php.net/manual/zh/ref.com.php"><code>com_dotnet</code></ulink></entry>
  73. <entry>--</entry>
  74. <entry></entry>
  75. </row>
  76. <row>
  77. <entry><ulink url="http://www.php.net/manual/zh/ref.ctype.php"><code>ctype</code></ulink></entry>
  78. <entry>依赖</entry>
  79. <entry>
  80. <ulink url="http://framework.zend.com/manual/en/zend.auth.adapter.http.html"><code>Zend_Auth_Adapter_Http</code></ulink>,
  81. <ulink url="http://framework.zend.com/manual/en/zend.gdata.html"><code>Zend_Gdata_App</code></ulink>,
  82. <ulink url="http://framework.zend.com/manual/en/zend.http.html"><code>Zend_Http_Client</code></ulink>,
  83. <ulink url="http://framework.zend.com/manual/en/zend.pdf.html"><code>Zend_Pdf</code></ulink>,
  84. <ulink url="http://framework.zend.com/manual/en/zend.rest.client.html"><code>Zend_Rest_Client</code></ulink>,
  85. <ulink url="http://framework.zend.com/manual/en/zend.rest.server.html"><code>Zend_Rest_Server</code></ulink>,
  86. <ulink url="http://framework.zend.com/manual/en/zend.search.lucene.html"><code>Zend_Search_Lucene</code></ulink>,
  87. <ulink url="http://framework.zend.com/manual/en/zend.uri.html"><code>Zend_Uri</code></ulink>,
  88. <ulink url="http://framework.zend.com/manual/en/zend.validate.html"><code>Zend_Validate</code></ulink>
  89. </entry>
  90. </row>
  91. <row>
  92. <entry><ulink url="http://www.php.net/manual/zh/ref.curl.php"><code>curl</code></ulink></entry>
  93. <entry>依赖</entry>
  94. <entry><ulink url="http://framework.zend.com/manual/en/zend.http.client.adapters.html"><code>Zend_Http_Client_Adapter_Curl</code></ulink></entry>
  95. </row>
  96. <row>
  97. <entry><ulink url="http://www.php.net/manual/zh/ref.datetime.php"><code>date</code></ulink></entry>
  98. <entry>---</entry>
  99. <entry></entry>
  100. </row>
  101. <row>
  102. <entry><ulink url="http://www.php.net/manual/zh/ref.dba.php"><code>dba</code></ulink></entry>
  103. <entry>--</entry>
  104. <entry></entry>
  105. </row>
  106. <row>
  107. <entry><ulink url="http://www.php.net/manual/zh/ref.dbase.php"><code>dbase</code></ulink></entry>
  108. <entry>--</entry>
  109. <entry></entry>
  110. </row>
  111. <row>
  112. <entry><ulink url="http://www.php.net/manual/zh/ref.dom.php"><code>dom</code></ulink></entry>
  113. <entry>依赖</entry>
  114. <entry>
  115. <ulink url="http://framework.zend.com/manual/en/zend.feed.html"><code>Zend_Feed</code></ulink>,
  116. <ulink url="http://framework.zend.com/manual/en/zend.gdata.html"><code>Zend_Gdata</code></ulink>,
  117. <ulink url="http://framework.zend.com/manual/en/zend.log.formatters.html"><code>Zend_Log_Formatter_Xml</code></ulink>,
  118. <ulink url="http://framework.zend.com/manual/en/zend.rest.server.html"><code>Zend_Rest_Server</code></ulink>,
  119. <ulink url="http://framework.zend.com/manual/en/zend.search.lucene.html"><code>Zend_Search_Lucene</code></ulink>,
  120. <ulink url="http://framework.zend.com/manual/en/zend.service.amazon.html"><code>Zend_Service_Amazon</code></ulink>,
  121. <ulink url="http://framework.zend.com/manual/en/zend.service.delicious.html"><code>Zend_Service_Delicious</code></ulink>,
  122. <ulink url="http://framework.zend.com/manual/en/zend.service.flickr.html"><code>Zend_Service_Flickr</code></ulink>,
  123. <ulink url="http://framework.zend.com/manual/en/zend.service.simpy.html"><code>Zend_Service_Simpy</code></ulink>,
  124. <ulink url="http://framework.zend.com/manual/en/zend.service.yahoo.html"><code>Zend_Service_Yahoo</code></ulink>,
  125. <ulink url="http://framework.zend.com/manual/en/zend.xmlrpc.html"><code>Zend_XmlRpc</code></ulink>
  126. </entry>
  127. </row>
  128. <row>
  129. <entry><ulink url="http://www.php.net/manual/zh/ref.exif.php"><code>exif</code></ulink></entry>
  130. <entry>--</entry>
  131. <entry></entry>
  132. </row>
  133. <row>
  134. <entry><ulink url="http://www.php.net/manual/zh/ref.fbsql.php"><code>fbsql</code></ulink></entry>
  135. <entry>--</entry>
  136. <entry></entry>
  137. </row>
  138. <row>
  139. <entry><ulink url="http://www.php.net/manual/zh/ref.fdf.php"><code>fdf</code></ulink></entry>
  140. <entry>--</entry>
  141. <entry></entry>
  142. </row>
  143. <row>
  144. <entry><ulink url="http://www.php.net/manual/zh/ref.filter.php"><code>filter</code></ulink></entry>
  145. <entry>--</entry>
  146. <entry></entry>
  147. </row>
  148. <row>
  149. <entry><ulink url="http://www.php.net/manual/zh/ref.ftp.php"><code>ftp</code></ulink></entry>
  150. <entry>--</entry>
  151. <entry></entry>
  152. </row>
  153. <row>
  154. <entry><ulink url="http://www.php.net/manual/zh/ref.image.php"><code>gd</code></ulink></entry>
  155. <entry>依赖</entry>
  156. <entry><ulink url="http://framework.zend.com/manual/en/zend.pdf.html"><code>Zend_Pdf</code></ulink></entry>
  157. </row>
  158. <row>
  159. <entry><ulink url="http://www.php.net/manual/zh/ref.gettext.php"><code>gettext</code></ulink></entry>
  160. <entry>--</entry>
  161. <entry></entry>
  162. </row>
  163. <row>
  164. <entry><ulink url="http://www.php.net/manual/zh/ref.gmp.php"><code>gmp</code></ulink></entry>
  165. <entry>--</entry>
  166. <entry></entry>
  167. </row>
  168. <row>
  169. <entry><ulink url="http://www.php.net/manual/zh/ref.hash.php"><code>hash</code></ulink></entry>
  170. <entry>依赖</entry>
  171. <entry><ulink url="http://framework.zend.com/manual/en/zend.auth.adapter.http.html"><code>Zend_Auth_Adapter_Http</code></ulink></entry>
  172. </row>
  173. <row>
  174. <entry><ulink url="http://www.php.net/manual/zh/ref.ibm-db2.php"><code>ibm_db2</code></ulink></entry>
  175. <entry>依赖</entry>
  176. <entry><ulink url="http://framework.zend.com/manual/en/zend.db.html"><code>Zend_Db_Adapter_Db2</code></ulink></entry>
  177. </row>
  178. <row>
  179. <entry><ulink url="http://www.php.net/manual/zh/ref.iconv.php"><code>iconv</code></ulink></entry>
  180. <entry>依赖</entry>
  181. <entry>
  182. <ulink url="http://framework.zend.com/manual/en/zend.locale.parsing.html"><code>Zend_Locale_Format</code></ulink>,
  183. <ulink url="http://framework.zend.com/manual/en/zend.mime.html"><code>Zend_Mime_Decode</code></ulink>,
  184. <ulink url="http://framework.zend.com/manual/en/zend.pdf.html"><code>Zend_Pdf</code></ulink>,
  185. <ulink url="http://framework.zend.com/manual/en/zend.search.lucene.html"><code>Zend_Search_Lucene</code></ulink>,
  186. <ulink url="http://framework.zend.com/manual/en/zend.service.audioscrobbler.html"><code>Zend_Service_Audioscrobbler</code></ulink>,
  187. <ulink url="http://framework.zend.com/manual/en/zend.service.flickr.html"><code>Zend_Service_Flickr</code></ulink>,
  188. <ulink url="http://framework.zend.com/manual/en/zend.xmlrpc.client.html"><code>Zend_XmlRpc_Client</code></ulink>
  189. </entry>
  190. </row>
  191. <row>
  192. <entry><ulink url="http://www.php.net/manual/zh/ref.imap.php"><code>imap</code></ulink></entry>
  193. <entry>--</entry>
  194. <entry></entry>
  195. </row>
  196. <row>
  197. <entry><ulink url="http://www.php.net/manual/zh/ref.ifx.php"><code>informix</code></ulink></entry>
  198. <entry>--</entry>
  199. <entry></entry>
  200. </row>
  201. <row>
  202. <entry><ulink url="http://www.php.net/manual/zh/ref.ibase.php"><code>interbase</code></ulink></entry>
  203. <entry>依赖</entry>
  204. <entry>Zend_Db_Adapter_Firebird</entry>
  205. </row>
  206. <row>
  207. <entry><ulink url="http://www.php.net/manual/zh/ref.json.php"><code>json</code></ulink></entry>
  208. <entry>可选</entry>
  209. <entry><ulink url="http://framework.zend.com/manual/en/zend.json.html"><code>Zend_Json</code></ulink></entry>
  210. </row>
  211. <row>
  212. <entry><ulink url="http://www.php.net/manual/zh/ref.ldap.php"><code>ldap</code></ulink></entry>
  213. <entry>--</entry>
  214. <entry></entry>
  215. </row>
  216. <row>
  217. <entry><ulink url="http://www.php.net/manual/zh/ref.libxml.php"><code>libxml</code></ulink></entry>
  218. <entry>依赖</entry>
  219. <entry>
  220. <ulink url="http://www.php.net/manual/zh/ref.dom.php"><code>DOM</code></ulink>,
  221. <ulink url="http://www.php.net/manual/zh/ref.simplexml.php"><code>SimpleXML</code></ulink>,
  222. <ulink url="http://www.php.net/manual/zh/ref.xslt.php"><code>XSLT</code></ulink>
  223. </entry>
  224. </row>
  225. <row>
  226. <entry><ulink url="http://www.php.net/manual/zh/ref.mbstring.php"><code>mbstring</code></ulink></entry>
  227. <entry>依赖</entry>
  228. <entry><ulink url="http://framework.zend.com/manual/en/zend.feed.html"><code>Zend_Feed</code></ulink></entry>
  229. </row>
  230. <row>
  231. <entry><ulink url="http://www.php.net/manual/zh/ref.mcrypt.php"><code>mcrypt</code></ulink></entry>
  232. <entry>--</entry>
  233. <entry></entry>
  234. </row>
  235. <row>
  236. <entry><ulink url="http://www.php.net/manual/zh/ref.memcache.php"><code>memcache</code></ulink></entry>
  237. <entry>依赖</entry>
  238. <entry><ulink url="http://framework.zend.com/manual/en/zend.cache.backends.html"><code>Zend_Cache_Backend_Memcached</code></ulink></entry>
  239. </row>
  240. <row>
  241. <entry><ulink url="http://www.php.net/manual/zh/ref.mhash.php"><code>mhash</code></ulink></entry>
  242. <entry>--</entry>
  243. <entry></entry>
  244. </row>
  245. <row>
  246. <entry><ulink url="http://www.php.net/manual/zh/ref.mime-magic.php"><code>mime_magic</code></ulink></entry>
  247. <entry>依赖</entry>
  248. <entry><ulink url="http://framework.zend.com/manual/en/zend.http.html"><code>Zend_Http_Client</code></ulink></entry>
  249. </row>
  250. <row>
  251. <entry><ulink url="http://www.php.net/manual/zh/ref.ming.php"><code>ming</code></ulink></entry>
  252. <entry>--</entry>
  253. <entry></entry>
  254. </row>
  255. <row>
  256. <entry><ulink url="http://www.php.net/manual/zh/ref.msql.php"><code>msql</code></ulink></entry>
  257. <entry>--</entry>
  258. <entry></entry>
  259. </row>
  260. <row>
  261. <entry><ulink url="http://www.php.net/manual/zh/ref.mssql.php"><code>mssql</code></ulink></entry>
  262. <entry>--</entry>
  263. <entry></entry>
  264. </row>
  265. <row>
  266. <entry><ulink url="http://www.php.net/manual/zh/ref.mysql.php"><code>mysql</code></ulink></entry>
  267. <entry>--</entry>
  268. <entry></entry>
  269. </row>
  270. <row>
  271. <entry><ulink url="http://www.php.net/manual/zh/ref.mysqli.php"><code>mysqli</code></ulink></entry>
  272. <entry>依赖</entry>
  273. <entry><ulink url="http://framework.zend.com/manual/en/zend.db.html"><code>Zend_Db_Adapter_Mysqli</code></ulink></entry>
  274. </row>
  275. <row>
  276. <entry><ulink url="http://www.php.net/manual/zh/ref.ncurses.php"><code>ncurses</code></ulink></entry>
  277. <entry>--</entry>
  278. <entry></entry>
  279. </row>
  280. <row>
  281. <entry><ulink url="http://www.php.net/manual/zh/ref.oci8.php"><code>oci8</code></ulink></entry>
  282. <entry>依赖</entry>
  283. <entry><ulink url="http://framework.zend.com/manual/en/zend.db.html"><code>Zend_Db_Adapter_Oracle</code></ulink></entry>
  284. </row>
  285. <row>
  286. <entry><ulink url="http://www.php.net/manual/zh/ref.uodbc.php"><code>odbc</code></ulink></entry>
  287. <entry>--</entry>
  288. <entry></entry>
  289. </row>
  290. <row>
  291. <entry><ulink url="http://www.php.net/manual/zh/ref.openssl.php"><code>openssl</code></ulink></entry>
  292. <entry>--</entry>
  293. <entry></entry>
  294. </row>
  295. <row>
  296. <entry><ulink url="http://www.php.net/manual/zh/ref.pcntl.php"><code>pcntl</code></ulink></entry>
  297. <entry>--</entry>
  298. <entry></entry>
  299. </row>
  300. <row>
  301. <entry><ulink url="http://www.php.net/manual/zh/ref.pcre.php"><code>pcre</code></ulink></entry>
  302. <entry>依赖</entry>
  303. <entry>Virtually all components</entry>
  304. </row>
  305. <row>
  306. <entry><ulink url="http://www.php.net/manual/zh/ref.pdo.php"><code>pdo</code></ulink></entry>
  307. <entry>依赖</entry>
  308. <entry>All PDO database adapters</entry>
  309. </row>
  310. <row>
  311. <entry><ulink url="http://www.php.net/manual/zh/ref.pdo-dblib.php"><code>pdo_dblib</code></ulink></entry>
  312. <entry>--</entry>
  313. <entry></entry>
  314. </row>
  315. <row>
  316. <entry><ulink url="http://www.php.net/manual/zh/ref.pdo-firebird.php"><code>pdo_firebird</code></ulink></entry>
  317. <entry>--</entry>
  318. <entry></entry>
  319. </row>
  320. <row>
  321. <entry><code>pdo_mssql</code></entry>
  322. <entry>依赖</entry>
  323. <entry><ulink url="http://framework.zend.com/manual/en/zend.db.html"><code>Zend_Db_Adapter_Pdo_Mssql</code></ulink></entry>
  324. </row>
  325. <row>
  326. <entry><ulink url="http://www.php.net/manual/zh/ref.pdo-mysql.php"><code>pdo_mysql</code></ulink></entry>
  327. <entry>依赖</entry>
  328. <entry><ulink url="http://framework.zend.com/manual/en/zend.db.html"><code>Zend_Db_Adapter_Pdo_Mysql</code></ulink></entry>
  329. </row>
  330. <row>
  331. <entry><ulink url="http://www.php.net/manual/zh/ref.pdo-oci.php"><code>pdo_oci</code></ulink></entry>
  332. <entry>依赖</entry>
  333. <entry><ulink url="http://framework.zend.com/manual/en/zend.db.html"><code>Zend_Db_Adapter_Pdo_Oci</code></ulink></entry>
  334. </row>
  335. <row>
  336. <entry><ulink url="http://www.php.net/manual/zh/ref.pdo-pgsql.php"><code>pdo_pgsql</code></ulink></entry>
  337. <entry>依赖</entry>
  338. <entry><ulink url="http://framework.zend.com/manual/en/zend.db.html"><code>Zend_Db_Adapter_Pdo_Pgsql</code></ulink></entry>
  339. </row>
  340. <row>
  341. <entry><ulink url="http://www.php.net/manual/zh/ref.pdo-sqlite.php"><code>pdo_sqlite</code></ulink></entry>
  342. <entry>依赖</entry>
  343. <entry><ulink url="http://framework.zend.com/manual/en/zend.db.html"><code>Zend_Db_Adapter_Pdo_Sqlite</code></ulink></entry>
  344. </row>
  345. <row>
  346. <entry><ulink url="http://www.php.net/manual/zh/ref.pgsql.php"><code>pgsql</code></ulink></entry>
  347. <entry>---</entry>
  348. <entry></entry>
  349. </row>
  350. <row>
  351. <entry><ulink url="http://www.php.net/manual/zh/ref.posix.php"><code>posix</code></ulink></entry>
  352. <entry>可选</entry>
  353. <entry><ulink url="http://framework.zend.com/manual/en/zend.mail.html"><code>Zend_Mail</code></ulink></entry>
  354. </row>
  355. <row>
  356. <entry><ulink url="http://www.php.net/manual/zh/ref.pspell.php"><code>pspell</code></ulink></entry>
  357. <entry>---</entry>
  358. <entry></entry>
  359. </row>
  360. <row>
  361. <entry><ulink url="http://www.php.net/manual/zh/ref.readline.php"><code>readline</code></ulink></entry>
  362. <entry>---</entry>
  363. <entry></entry>
  364. </row>
  365. <row>
  366. <entry><ulink url="http://www.php.net/manual/zh/ref.recode.php"><code>recode</code></ulink></entry>
  367. <entry>---</entry>
  368. <entry></entry>
  369. </row>
  370. <row>
  371. <entry><ulink url="http://www.php.net/manual/zh/language.oop5.reflection.php"><code>Reflection</code></ulink></entry>
  372. <entry>依赖</entry>
  373. <entry>
  374. <ulink url="http://framework.zend.com/manual/en/zend.controller.html"><code>Zend_Controller</code></ulink>,
  375. <ulink url="http://framework.zend.com/manual/en/zend.filter.html"><code>Zend_Filter</code></ulink>,
  376. <ulink url="http://framework.zend.com/manual/en/zend.filter.input.html"><code>Zend_Filter_Input</code></ulink>,
  377. <ulink url="http://framework.zend.com/manual/en/zend.json.html"><code>Zend_Json</code></ulink>,
  378. <ulink url="http://framework.zend.com/manual/en/zend.log.html"><code>Zend_Log</code></ulink>,
  379. <ulink url="http://framework.zend.com/manual/en/zend.rest.server.html"><code>Zend_Rest_Server</code></ulink>,
  380. <ulink url="http://framework.zend.com/manual/en/zend.server.reflection.html"><code>Zend_Server_Reflection</code></ulink>,
  381. <ulink url="http://framework.zend.com/manual/en/zend.validate.html"><code>Zend_Validate</code></ulink>,
  382. <ulink url="http://framework.zend.com/manual/en/zend.view.html"><code>Zend_View</code></ulink>,
  383. <ulink url="http://framework.zend.com/manual/en/zend.xmlrpc.server.html"><code>Zend_XmlRpc_Server</code></ulink>
  384. </entry>
  385. </row>
  386. <row>
  387. <entry><ulink url="http://www.php.net/manual/zh/ref.session.php"><code>session</code></ulink></entry>
  388. <entry>依赖</entry>
  389. <entry>
  390. <ulink url="http://framework.zend.com/manual/en/zend.controller.actionhelpers.html"><code>Zend_Controller_Action_Helper_Redirector</code></ulink>,
  391. <ulink url="http://framework.zend.com/manual/en/zend.session.html"><code>Zend_Session</code></ulink>
  392. </entry>
  393. </row>
  394. <row>
  395. <entry><ulink url="http://www.php.net/manual/zh/ref.shmop.php"><code>shmop</code></ulink></entry>
  396. <entry>---</entry>
  397. <entry></entry>
  398. </row>
  399. <row>
  400. <entry><ulink url="http://www.php.net/manual/zh/ref.simplexml.php"><code>SimpleXML</code></ulink></entry>
  401. <entry>依赖</entry>
  402. <entry>
  403. <ulink url="http://framework.zend.com/manual/en/zend.config.adapters.xml.html"><code>Zend_Config_Xml</code></ulink>,
  404. <ulink url="http://framework.zend.com/manual/en/zend.feed.html"><code>Zend_Feed</code></ulink>,
  405. <ulink url="http://framework.zend.com/manual/en/zend.rest.client.html"><code>Zend_Rest_Client</code></ulink>,
  406. <ulink url="http://framework.zend.com/manual/en/zend.service.audioscrobbler.html"><code>Zend_Service_Audioscrobbler</code></ulink>,
  407. <ulink url="http://framework.zend.com/manual/en/zend.xmlrpc.html"><code>Zend_XmlRpc</code></ulink>
  408. </entry>
  409. </row>
  410. <row>
  411. <entry><ulink url="http://www.php.net/manual/zh/ref.soap.php"><code>soap</code></ulink></entry>
  412. <entry>依赖</entry>
  413. <entry><ulink url="http://framework.zend.com/manual/en/zend.service.strikeiron.html"><code>Zend_Service_StrikeIron</code></ulink></entry>
  414. </row>
  415. <row>
  416. <entry><ulink url="http://www.php.net/manual/zh/ref.sockets.php"><code>sockets</code></ulink></entry>
  417. <entry>---</entry>
  418. <entry></entry>
  419. </row>
  420. <row>
  421. <entry><ulink url="http://www.php.net/manual/zh/ref.spl.php"><code>SPL</code></ulink></entry>
  422. <entry>依赖</entry>
  423. <entry>Virtually all components</entry>
  424. </row>
  425. <row>
  426. <entry><ulink url="http://www.php.net/manual/en/ref.sqlite.php"><code>SQLite</code></ulink></entry>
  427. <entry>依赖</entry>
  428. <entry><ulink url="http://framework.zend.com/manual/en/zend.cache.backends.html">Zend_Cache_Backend_Sqlite</ulink></entry>
  429. </row>
  430. <row>
  431. <entry><code>standard</code></entry>
  432. <entry>依赖</entry>
  433. <entry>Virtually all components</entry>
  434. </row>
  435. <row>
  436. <entry><ulink url="http://www.php.net/manual/zh/ref.sybase.php"><code>sybase</code></ulink></entry>
  437. <entry>---</entry>
  438. <entry></entry>
  439. </row>
  440. <row>
  441. <entry>sysvmsg</entry>
  442. <entry>---</entry>
  443. <entry></entry>
  444. </row>
  445. <row>
  446. <entry>sysvsem</entry>
  447. <entry>---</entry>
  448. <entry></entry>
  449. </row>
  450. <row>
  451. <entry>sysvshm</entry>
  452. <entry>---</entry>
  453. <entry></entry>
  454. </row>
  455. <row>
  456. <entry><ulink url="http://www.php.net/manual/zh/ref.tidy.php"><code>tidy</code></ulink></entry>
  457. <entry>---</entry>
  458. <entry></entry>
  459. </row>
  460. <row>
  461. <entry><ulink url="http://www.php.net/manual/zh/ref.tokenizer.php"><code>tokenizer</code></ulink></entry>
  462. <entry>---</entry>
  463. <entry></entry>
  464. </row>
  465. <row>
  466. <entry><ulink url="http://www.php.net/manual/zh/ref.wddx.php"><code>wddx</code></ulink></entry>
  467. <entry>---</entry>
  468. <entry></entry>
  469. </row>
  470. <row>
  471. <entry><ulink url="http://www.php.net/manual/zh/ref.xml.php"><code>xml</code></ulink></entry>
  472. <entry>依赖</entry>
  473. <entry>
  474. <ulink url="http://framework.zend.com/manual/en/zend.translate.adapter.html"><code>Zend_Translate_Adapter_Qt</code></ulink>,
  475. <ulink url="http://framework.zend.com/manual/en/zend.translate.adapter.html"><code>Zend_Translate_Adapter_Tmx</code></ulink>,
  476. <ulink url="http://framework.zend.com/manual/en/zend.translate.adapter.html"><code>Zend_Translate_Adapter_Xliff</code></ulink>
  477. </entry>
  478. </row>
  479. <row>
  480. <entry><ulink url="http://www.php.net/manual/zh/ref.xmlreader.php"><code>XMLReader</code></ulink></entry>
  481. <entry>---</entry>
  482. <entry></entry>
  483. </row>
  484. <row>
  485. <entry><ulink url="http://www.php.net/manual/zh/ref.xmlrpc.php"><code>xmlrpc</code></ulink></entry>
  486. <entry>---</entry>
  487. <entry></entry>
  488. </row>
  489. <row>
  490. <entry><ulink url="http://www.php.net/manual/zh/ref.xmlwriter.php"><code>XMLWriter</code></ulink></entry>
  491. <entry>---</entry>
  492. <entry></entry>
  493. </row>
  494. <row>
  495. <entry><ulink url="http://www.php.net/manual/zh/ref.xsl.php"><code>xsl</code></ulink></entry>
  496. <entry>---</entry>
  497. <entry></entry>
  498. </row>
  499. <row>
  500. <entry><ulink url="http://www.php.net/manual/zh/ref.zip.php"><code>zip</code></ulink></entry>
  501. <entry>---</entry>
  502. <entry></entry>
  503. </row>
  504. <row>
  505. <entry><ulink url="http://www.php.net/manual/zh/ref.zlib.php"><code>zlib</code></ulink></entry>
  506. <entry>依赖</entry>
  507. <entry>
  508. <ulink url="http://framework.zend.com/manual/en/zend.pdf.html"><code>Zend_Pdf</code></ulink>,
  509. <ulink url="http://www.php.net/manual/zh/ref.memcache.php"><code>Memcache</code></ulink>
  510. </entry>
  511. </row>
  512. </tbody>
  513. </tgroup>
  514. </table>
  515. </sect1>
  516. <sect1 id="requirements.zendcomponents">
  517. <title>Zend Framework 组件</title>
  518. <para>
  519. 下面的表格列出了所有可用的 Zend Framework 组件,以及其所需的 PHP 扩展。这可以帮助了解哪些扩展对于应用来说是必须的。并不是每个应用都需要所有 Zend Framework 使用到的扩展。
  520. </para>
  521. <table frame='all' id="requirements.zendcomponents.table-1">
  522. <title>Zend Framework 组件以及其使用到的 PHP 扩展</title>
  523. <tgroup cols='2'>
  524. <colspec colwidth='2in'/>
  525. <colspec colwidth='4in'/>
  526. <thead>
  527. <row>
  528. <entry>Zend Framework 组件</entry>
  529. <entry>PHP 扩展 (子类 / 使用方式)</entry>
  530. </row>
  531. </thead>
  532. <tbody>
  533. <row>
  534. <entry>所有组件</entry>
  535. <entry>
  536. <ulink url="http://www.php.net/manual/zh/ref.pcre.php"><code>pcre</code></ulink>
  537. ( 依赖 )
  538. <ulink url="http://www.php.net/manual/zh/ref.spl.php"><code>SPL</code></ulink>
  539. ( 依赖 )
  540. <code>standard</code>
  541. ( 依赖 )
  542. </entry>
  543. </row>
  544. <row>
  545. <entry><ulink url="http://framework.zend.com/manual/en/zend.acl.html"><code>Zend_Acl</code></ulink></entry>
  546. <entry>---</entry>
  547. </row>
  548. <row>
  549. <entry><ulink url="http://framework.zend.com/manual/en/zend.auth.html"><code>Zend_Auth</code></ulink></entry>
  550. <entry>
  551. <ulink url="http://www.php.net/manual/zh/ref.ctype.php"><code>ctype</code></ulink>
  552. ( <ulink url="http://framework.zend.com/manual/en/zend.auth.adapter.http.html"><code>Zend_Auth_Adapter_Http</code></ulink> / 依赖 )
  553. <ulink url="http://www.php.net/manual/zh/ref.hash.php"><code>hash</code></ulink>
  554. ( <ulink url="http://framework.zend.com/manual/en/zend.auth.adapter.http.html"><code>Zend_Auth_Adapter_Http</code></ulink> / 依赖 )
  555. </entry>
  556. </row>
  557. <row>
  558. <entry><ulink url="http://framework.zend.com/manual/en/zend.cache.html"><code>Zend_Cache</code></ulink></entry>
  559. <entry>
  560. <ulink url="http://www.php.net/manual/zh/ref.apc.php"><code>apc</code></ulink>
  561. ( <ulink url="http://framework.zend.com/manual/en/zend.cache.backends.html"><code>Zend_Cache_Backend_Apc</code></ulink> / 依赖 )
  562. <ulink url="http://www.php.net/manual/zh/ref.memcache.php"><code>memcache</code></ulink>
  563. ( <ulink url="http://framework.zend.com/manual/en/zend.cache.backends.html"><code>Zend_Cache_Backend_Memcache</code></ulink> / 依赖 )
  564. <ulink url="http://www.php.net/manual/en/ref.sqlite.php"><code>sqlite</code></ulink>
  565. ( <ulink url="http://framework.zend.com/manual/en/zend.cache.backends.html"><code>Zend_Cache_Backend_Sqlite</code></ulink> / 依赖 )
  566. <ulink url="http://www.php.net/manual/zh/ref.zlib.php"><code>zlib</code></ulink>
  567. ( <ulink url="http://framework.zend.com/manual/en/zend.cache.backends.html"><code>Zend_Cache_Backend_Zlib</code></ulink> / 依赖 )
  568. </entry>
  569. </row>
  570. <row>
  571. <entry><ulink url="http://framework.zend.com/manual/en/zend.config.html"><code>Zend_Config</code></ulink></entry>
  572. <entry>
  573. <ulink url="http://www.php.net/manual/zh/ref.libxml.php"><code>libxml</code></ulink>
  574. ( <ulink url="http://framework.zend.com/manual/en/zend.config.adapters.xml.html"><code>Zend_Config_Xml</code></ulink> / 依赖 )
  575. <ulink url="http://www.php.net/manual/zh/ref.simplexml.php"><code>SimpleXML</code></ulink>
  576. ( <ulink url="http://framework.zend.com/manual/en/zend.config.adapters.xml.html"><code>Zend_Config_Xml</code></ulink> / 依赖 )
  577. </entry>
  578. </row>
  579. <row>
  580. <entry><ulink url="http://framework.zend.com/manual/en/zend.console.getopt.html"><code>Zend_Console_Getopt</code></ulink></entry>
  581. <entry>---</entry>
  582. </row>
  583. <row>
  584. <entry><ulink url="http://framework.zend.com/manual/en/zend.controller.html"><code>Zend_Controller</code></ulink></entry>
  585. <entry>
  586. <ulink url="http://www.php.net/manual/zh/language.oop5.reflection.php"><code>Reflection</code></ulink>
  587. ( 依赖 )
  588. <ulink url="http://www.php.net/manual/zh/ref.session.php"><code>session</code></ulink>
  589. ( <ulink url="http://framework.zend.com/manual/en/zend.controller.actionhelpers.html"><code>Zend_Controller_Action_Helper_Redirector</code></ulink> / 依赖 )
  590. </entry>
  591. </row>
  592. <row>
  593. <entry><ulink url="http://framework.zend.com/manual/en/zend.date.html"><code>Zend_Date</code></ulink></entry>
  594. <entry>---</entry>
  595. </row>
  596. <row>
  597. <entry><ulink url="http://framework.zend.com/manual/en/zend.db.html"><code>Zend_Db</code></ulink></entry>
  598. <entry>
  599. <ulink url="http://www.php.net/manual/zh/ref.ibm-db2.php"><code>ibm_db2</code></ulink>
  600. ( <ulink url="http://framework.zend.com/manual/en/zend.db.html"><code>Zend_Db_Adapter_Db2</code></ulink> / 依赖 )
  601. <ulink url="http://www.php.net/manual/zh/ref.mysqli.php"><code>mysqli</code></ulink>
  602. ( <ulink url="http://framework.zend.com/manual/en/zend.db.html"><code>Zend_Db_Adapter_Mysqli</code></ulink> / 依赖 )
  603. <ulink url="http://www.php.net/manual/zh/ref.oci8.php"><code>oci8</code></ulink>
  604. ( <ulink url="http://framework.zend.com/manual/en/zend.db.html"><code>Zend_Db_Adapter_Oracle</code></ulink> / 依赖 )
  605. <ulink url="http://www.php.net/manual/zh/ref.pdo.php"><code>pdo</code></ulink>
  606. ( All PDO Adapters / 依赖 )
  607. <code>pdo_mssql</code>
  608. ( <ulink url="http://framework.zend.com/manual/en/zend.db.html"><code>Zend_Db_Adapter_Pdo_Mssql</code></ulink> / 依赖 )
  609. <ulink url="http://www.php.net/manual/zh/ref.pdo-mysql.php"><code>pdo_mysql</code></ulink>
  610. ( <ulink url="http://framework.zend.com/manual/en/zend.db.html"><code>Zend_Db_Adapter_Pdo_Mysql</code></ulink> / 依赖 )
  611. <ulink url="http://www.php.net/manual/zh/ref.pdo-oci.php"><code>pdo_oci</code></ulink>
  612. ( <ulink url="http://framework.zend.com/manual/en/zend.db.html"><code>Zend_Db_Adapter_Pdo_Oci</code></ulink> / 依赖 )
  613. <ulink url="http://www.php.net/manual/zh/ref.pdo-pgsql.php"><code>pdo_pgsql</code></ulink>
  614. ( <ulink url="http://framework.zend.com/manual/en/zend.db.html"><code>Zend_Db_Adapter_Pdo_Pgsql</code></ulink> / 依赖 )
  615. <ulink url="http://www.php.net/manual/zh/ref.pdo-sqlite.php"><code>pdo_sqlite</code></ulink>
  616. ( <ulink url="http://framework.zend.com/manual/en/zend.db.html"><code>Zend_Db_Adapter_Pdo_Sqlite</code></ulink> / 依赖 )
  617. </entry>
  618. </row>
  619. <row>
  620. <entry><ulink url="http://framework.zend.com/manual/en/zend.debug.html"><code>Zend_Debug</code></ulink></entry>
  621. <entry>---</entry>
  622. </row>
  623. <row>
  624. <entry><ulink url="http://framework.zend.com/manual/en/zend.exception.html"><code>Zend_Exception</code></ulink></entry>
  625. <entry>---</entry>
  626. </row>
  627. <row>
  628. <entry><ulink url="http://framework.zend.com/manual/en/zend.feed.html"><code>Zend_Feed</code></ulink></entry>
  629. <entry>
  630. <ulink url="http://www.php.net/manual/zh/ref.dom.php"><code>dom</code></ulink>
  631. ( 依赖 )
  632. <ulink url="http://www.php.net/manual/zh/ref.libxml.php"><code>libxml</code></ulink>
  633. ( 依赖 )
  634. <ulink url="http://www.php.net/manual/zh/ref.mbstring.php"><code>mbstring</code></ulink>
  635. ( 依赖 )
  636. <ulink url="http://www.php.net/manual/zh/ref.simplexml.php"><code>SimpleXML</code></ulink>
  637. ( 依赖 )
  638. </entry>
  639. </row>
  640. <row>
  641. <entry><ulink url="http://framework.zend.com/manual/en/zend.filter.html"><code>Zend_Filter</code></ulink></entry>
  642. <entry>
  643. <ulink url="http://www.php.net/manual/zh/language.oop5.reflection.php"><code>Reflection</code></ulink>
  644. ( 依赖 )
  645. </entry>
  646. </row>
  647. <row>
  648. <entry><ulink url="http://framework.zend.com/manual/en/zend.filter.input.html"><code>Zend_Filter_Input</code></ulink></entry>
  649. <entry>
  650. <ulink url="http://www.php.net/manual/zh/language.oop5.reflection.php"><code>Reflection</code></ulink>
  651. ( 依赖 )
  652. </entry>
  653. </row>
  654. <row>
  655. <entry><ulink url="http://framework.zend.com/manual/en/zend.gdata.html"><code>Zend_Gdata</code></ulink></entry>
  656. <entry>
  657. <ulink url="http://www.php.net/manual/zh/ref.ctype.php"><code>ctype</code></ulink>
  658. ( <ulink url="http://framework.zend.com/manual/en/zend.gdata.html"><code>Zend_Gdata_App</code></ulink> / 依赖 )
  659. <ulink url="http://www.php.net/manual/zh/ref.dom.php"><code>dom</code></ulink>
  660. ( 依赖 )
  661. <ulink url="http://www.php.net/manual/zh/ref.libxml.php"><code>libxml</code></ulink>
  662. ( 依赖 )
  663. </entry>
  664. </row>
  665. <row>
  666. <entry><ulink url="http://framework.zend.com/manual/en/zend.http.html"><code>Zend_Http</code></ulink></entry>
  667. <entry>
  668. <ulink url="http://www.php.net/manual/zh/ref.ctype.php"><code>ctype</code></ulink>
  669. ( <ulink url="http://framework.zend.com/manual/en/zend.http.html"><code>Zend_Http_Client</code></ulink> / 依赖 )
  670. <ulink url="http://www.php.net/manual/zh/ref.curl.php"><code>curl</code></ulink>
  671. ( <ulink url="http://framework.zend.com/manual/en/zend.http.client.adapters.html"><code>Zend_Http_Client_Adapter_Curl</code></ulink> / 依赖 )
  672. <ulink url="http://www.php.net/manual/zh/ref.mime-magic.php"><code>mime_magic</code></ulink>
  673. ( <ulink url="http://framework.zend.com/manual/en/zend.http.html"><code>Zend_Http_Client</code></ulink> / 依赖 )
  674. </entry>
  675. </row>
  676. <row>
  677. <entry><ulink url="http://framework.zend.com/manual/en/zend.json.html"><code>Zend_Json</code></ulink></entry>
  678. <entry>
  679. <ulink url="http://www.php.net/manual/zh/ref.json.php"><code>json</code></ulink>
  680. ( 可选 )
  681. <ulink url="http://www.php.net/manual/zh/language.oop5.reflection.php"><code>Reflection</code></ulink>
  682. ( 依赖 )
  683. </entry>
  684. </row>
  685. <row>
  686. <entry><ulink url="http://framework.zend.com/manual/en/zend.loader.html"><code>Zend_Loader</code></ulink></entry>
  687. <entry>---</entry>
  688. </row>
  689. <row>
  690. <entry><ulink url="http://framework.zend.com/manual/en/zend.locale.html"><code>Zend_Locale</code></ulink></entry>
  691. <entry>
  692. <ulink url="http://www.php.net/manual/zh/ref.bc.php"><code>bcmath</code></ulink>
  693. ( <ulink url="http://framework.zend.com/manual/en/zend.locale.html"><code>Zend_Locale_Math</code></ulink> / 可选 )
  694. <ulink url="http://www.php.net/manual/zh/ref.iconv.php"><code>iconv</code></ulink>
  695. ( <ulink url="http://framework.zend.com/manual/en/zend.locale.parsing.html"><code>Zend_Locale_Format</code></ulink> / 依赖 )
  696. </entry>
  697. </row>
  698. <row>
  699. <entry><ulink url="http://framework.zend.com/manual/en/zend.log.html"><code>Zend_Log</code></ulink></entry>
  700. <entry>
  701. <ulink url="http://www.php.net/manual/zh/ref.dom.php"><code>dom</code></ulink>
  702. ( <ulink url="http://framework.zend.com/manual/en/zend.log.formatters.html"><code>Zend_Log_Formatter_Xml</code></ulink> / 依赖 )
  703. <ulink url="http://www.php.net/manual/zh/ref.libxml.php"><code>libxml</code></ulink>
  704. ( <ulink url="http://framework.zend.com/manual/en/zend.log.formatters.html"><code>Zend_Log_Formatter_Xml</code></ulink> / 依赖 )
  705. <ulink url="http://www.php.net/manual/zh/language.oop5.reflection.php"><code>Reflection</code></ulink>
  706. ( 依赖 )
  707. </entry>
  708. </row>
  709. <row>
  710. <entry><ulink url="http://framework.zend.com/manual/en/zend.mail.html"><code>Zend_Mail</code></ulink></entry>
  711. <entry>
  712. <ulink url="http://www.php.net/manual/zh/ref.posix.php"><code>posix</code></ulink>
  713. ( 可选 )
  714. </entry>
  715. </row>
  716. <row>
  717. <entry><ulink url="http://framework.zend.com/manual/en/zend.measure.html"><code>Zend_Measure</code></ulink></entry>
  718. <entry>---</entry>
  719. </row>
  720. <row>
  721. <entry><ulink url="http://framework.zend.com/manual/en/zend.memory.html"><code>Zend_Memory</code></ulink></entry>
  722. <entry>---</entry>
  723. </row>
  724. <row>
  725. <entry><ulink url="http://framework.zend.com/manual/en/zend.mime.html"><code>Zend_Mime</code></ulink></entry>
  726. <entry>
  727. <ulink url="http://www.php.net/manual/zh/ref.iconv.php"><code>iconv</code></ulink>
  728. ( <ulink url="http://framework.zend.com/manual/en/zend.mime.html"><code>Zend_Mime_Decode</code></ulink> / 依赖 )
  729. </entry>
  730. </row>
  731. <row>
  732. <entry><ulink url="http://framework.zend.com/manual/en/zend.pdf.html"><code>Zend_Pdf</code></ulink></entry>
  733. <entry>
  734. <ulink url="http://www.php.net/manual/zh/ref.ctype.php"><code>ctype</code></ulink>
  735. ( 依赖 )
  736. <ulink url="http://www.php.net/manual/zh/ref.image.php"><code>gd</code></ulink>
  737. ( 依赖 )
  738. <ulink url="http://www.php.net/manual/zh/ref.iconv.php"><code>iconv</code></ulink>
  739. ( 依赖 )
  740. <ulink url="http://www.php.net/manual/zh/ref.zlib.php"><code>zlib</code></ulink>
  741. ( 依赖 )
  742. </entry>
  743. </row>
  744. <row>
  745. <entry><ulink url="http://framework.zend.com/manual/en/zend.registry.html"><code>Zend_Registry</code></ulink></entry>
  746. <entry>---</entry>
  747. </row>
  748. <row>
  749. <entry>Zend_Request</entry>
  750. <entry>---</entry>
  751. </row>
  752. <row>
  753. <entry><ulink url="http://framework.zend.com/manual/en/zend.rest.html"><code>Zend_Rest</code></ulink></entry>
  754. <entry>
  755. <ulink url="http://www.php.net/manual/zh/ref.ctype.php"><code>ctype</code></ulink>
  756. ( <ulink url="http://framework.zend.com/manual/en/zend.rest.client.html"><code>Zend_Rest_Client</code></ulink> / 依赖 )
  757. ( <ulink url="http://framework.zend.com/manual/en/zend.rest.server.html"><code>Zend_Rest_Server</code></ulink> / 依赖 )
  758. <ulink url="http://www.php.net/manual/zh/ref.dom.php"><code>dom</code></ulink>
  759. ( <ulink url="http://framework.zend.com/manual/en/zend.rest.server.html"><code>Zend_Rest_Server</code></ulink> / 依赖 )
  760. <ulink url="http://www.php.net/manual/zh/ref.libxml.php"><code>libxml</code></ulink>
  761. ( <ulink url="http://framework.zend.com/manual/en/zend.rest.client.html"><code>Zend_Rest_Client</code></ulink> / 依赖 )
  762. ( <ulink url="http://framework.zend.com/manual/en/zend.rest.server.html"><code>Zend_Rest_Server</code></ulink> / 依赖 )
  763. <ulink url="http://www.php.net/manual/zh/language.oop5.reflection.php"><code>Reflection</code></ulink>
  764. ( <ulink url="http://framework.zend.com/manual/en/zend.rest.server.html"><code>Zend_Rest_Server</code></ulink> / 依赖 )
  765. <ulink url="http://www.php.net/manual/zh/ref.simplexml.php"><code>SimpleXML</code></ulink>
  766. ( <ulink url="http://framework.zend.com/manual/en/zend.rest.client.html"><code>Zend_Rest_Client</code></ulink> / 依赖 )
  767. </entry>
  768. </row>
  769. <row>
  770. <entry><ulink url="http://framework.zend.com/manual/en/zend.search.lucene.html"><code>Zend_Search_Lucene</code></ulink></entry>
  771. <entry>
  772. <ulink url="http://www.php.net/manual/zh/ref.ctype.php"><code>ctype</code></ulink>
  773. ( 依赖 )
  774. <ulink url="http://pecl.php.net/package/Bitset"><code>bitset</code></ulink>
  775. ( 可选 )
  776. <ulink url="http://www.php.net/manual/zh/ref.dom.php"><code>dom</code></ulink>
  777. ( 依赖 )
  778. <ulink url="http://www.php.net/manual/zh/ref.iconv.php"><code>iconv</code></ulink>
  779. ( 依赖 )
  780. <ulink url="http://www.php.net/manual/zh/ref.libxml.php"><code>libxml</code></ulink>
  781. ( 依赖 )
  782. </entry>
  783. </row>
  784. <row>
  785. <entry><ulink url="http://framework.zend.com/manual/en/zend.server.reflection.html"><code>Zend_Server_Reflection</code></ulink></entry>
  786. <entry>
  787. <ulink url="http://www.php.net/manual/zh/language.oop5.reflection.php"><code>Reflection</code></ulink>
  788. ( 依赖 )
  789. </entry>
  790. </row>
  791. <row>
  792. <entry><ulink url="http://framework.zend.com/manual/en/zend.service.akismet.html"><code>Zend_Service_Akismet</code></ulink></entry>
  793. <entry>---</entry>
  794. </row>
  795. <row>
  796. <entry><ulink url="http://framework.zend.com/manual/en/zend.service.amazon.html"><code>Zend_Service_Amazon</code></ulink></entry>
  797. <entry>
  798. <ulink url="http://www.php.net/manual/zh/ref.dom.php"><code>dom</code></ulink>
  799. ( 依赖 )
  800. <ulink url="http://www.php.net/manual/zh/ref.libxml.php"><code>libxml</code></ulink>
  801. ( 依赖 )
  802. </entry>
  803. </row>
  804. <row>
  805. <entry><ulink url="http://framework.zend.com/manual/en/zend.service.audioscrobbler.html"><code>Zend_Service_Audioscrobbler</code></ulink></entry>
  806. <entry>
  807. <ulink url="http://www.php.net/manual/zh/ref.iconv.php"><code>iconv</code></ulink>
  808. ( 依赖 )
  809. <ulink url="http://www.php.net/manual/zh/ref.libxml.php"><code>libxml</code></ulink>
  810. ( 依赖 )
  811. <ulink url="http://www.php.net/manual/zh/ref.simplexml.php"><code>SimpleXML</code></ulink>
  812. ( 依赖 )
  813. </entry>
  814. </row>
  815. <row>
  816. <entry><ulink url="http://framework.zend.com/manual/en/zend.service.delicious.html"><code>Zend_Service_Delicious</code></ulink></entry>
  817. <entry>
  818. <ulink url="http://www.php.net/manual/zh/ref.dom.php"><code>dom</code></ulink>
  819. ( 依赖 )
  820. <ulink url="http://www.php.net/manual/zh/ref.libxml.php"><code>libxml</code></ulink>
  821. ( 依赖 )
  822. </entry>
  823. </row>
  824. <row>
  825. <entry><ulink url="http://framework.zend.com/manual/en/zend.service.flickr.html"><code>Zend_Service_Flickr</code></ulink></entry>
  826. <entry>
  827. <ulink url="http://www.php.net/manual/zh/ref.dom.php"><code>dom</code></ulink>
  828. ( 依赖 )
  829. <ulink url="http://www.php.net/manual/zh/ref.iconv.php"><code>iconv</code></ulink>
  830. ( 依赖 )
  831. <ulink url="http://www.php.net/manual/zh/ref.libxml.php"><code>libxml</code></ulink>
  832. ( 依赖 )
  833. </entry>
  834. </row>
  835. <row>
  836. <entry><ulink url="http://framework.zend.com/manual/en/zend.service.simpy.html"><code>Zend_Service_Simpy</code></ulink></entry>
  837. <entry>
  838. <ulink url="http://www.php.net/manual/zh/ref.dom.php"><code>dom</code></ulink>
  839. ( 依赖 )
  840. <ulink url="http://www.php.net/manual/zh/ref.libxml.php"><code>libxml</code></ulink>
  841. ( 依赖 )
  842. <ulink url="http://www.php.net/manual/zh/ref.libxml.php"><code>libxml</code></ulink>
  843. ( 依赖 )
  844. </entry>
  845. </row>
  846. <row>
  847. <entry><ulink url="http://framework.zend.com/manual/en/zend.service.strikeiron.html"><code>Zend_Service_StrikeIron</code></ulink></entry>
  848. <entry>
  849. <ulink url="http://www.php.net/manual/zh/ref.soap.php"><code>soap</code></ulink>
  850. ( 依赖 )
  851. </entry>
  852. </row>
  853. <row>
  854. <entry><ulink url="http://framework.zend.com/manual/en/zend.service.yahoo.html"><code>Zend_Service_Yahoo</code></ulink></entry>
  855. <entry>
  856. <ulink url="http://www.php.net/manual/zh/ref.dom.php"><code>dom</code></ulink>
  857. ( 依赖 )
  858. <ulink url="http://www.php.net/manual/zh/ref.libxml.php"><code>libxml</code></ulink>
  859. ( 依赖 )
  860. </entry>
  861. </row>
  862. <row>
  863. <entry><ulink url="http://framework.zend.com/manual/en/zend.session.html"><code>Zend_Session</code></ulink></entry>
  864. <entry>
  865. <ulink url="http://www.php.net/manual/zh/ref.session.php"><code>session</code></ulink>
  866. ( 依赖 )
  867. </entry>
  868. </row>
  869. <row>
  870. <entry><ulink url="http://framework.zend.com/manual/en/zend.translate.html"><code>Zend_Translate</code></ulink></entry>
  871. <entry>
  872. <ulink url="http://www.php.net/manual/zh/ref.xml.php"><code>xml</code></ulink>
  873. ( <ulink url="http://framework.zend.com/manual/en/zend.translate.adapter.html"><code>Zend_Translate_Adapter_Qt</code></ulink> / 依赖 )
  874. ( <ulink url="http://framework.zend.com/manual/en/zend.translate.adapter.html"><code>Zend_Translate_Adapter_Tmx</code></ulink> / 依赖 )
  875. ( <ulink url="http://framework.zend.com/manual/en/zend.translate.adapter.html"><code>Zend_Translate_Adapter_Xliff</code></ulink> / 依赖 )
  876. </entry>
  877. </row>
  878. <row>
  879. <entry><ulink url="http://framework.zend.com/manual/en/zend.uri.html"><code>Zend_Uri</code></ulink></entry>
  880. <entry>
  881. <ulink url="http://www.php.net/manual/zh/ref.ctype.php"><code>ctype</code></ulink>
  882. ( 依赖 )
  883. </entry>
  884. </row>
  885. <row>
  886. <entry><ulink url="http://framework.zend.com/manual/en/zend.validate.html"><code>Zend_Validate</code></ulink></entry>
  887. <entry>
  888. <ulink url="http://www.php.net/manual/zh/ref.ctype.php"><code>ctype</code></ulink>
  889. ( 依赖 )
  890. <ulink url="http://www.php.net/manual/zh/language.oop5.reflection.php"><code>Reflection</code></ulink>
  891. ( 依赖 )
  892. </entry>
  893. </row>
  894. <row>
  895. <entry><ulink url="http://framework.zend.com/manual/en/zend.version.html"><code>Zend_Version</code></ulink></entry>
  896. <entry>---</entry>
  897. </row>
  898. <row>
  899. <entry><ulink url="http://framework.zend.com/manual/en/zend.view.html"><code>Zend_View</code></ulink></entry>
  900. <entry>
  901. <ulink url="http://www.php.net/manual/zh/language.oop5.reflection.php"><code>Reflection</code></ulink>
  902. ( 依赖 )
  903. </entry>
  904. </row>
  905. <row>
  906. <entry><ulink url="http://framework.zend.com/manual/en/zend.xmlrpc.html"><code>Zend_XmlRpc</code></ulink></entry>
  907. <entry>
  908. <ulink url="http://www.php.net/manual/zh/ref.dom.php"><code>dom</code></ulink>
  909. ( 依赖 )
  910. <ulink url="http://www.php.net/manual/zh/ref.iconv.php"><code>iconv</code></ulink>
  911. ( <ulink url="http://framework.zend.com/manual/en/zend.xmlrpc.client.html"><code>Zend_XmlRpc_Client</code></ulink> / 依赖 )
  912. <ulink url="http://www.php.net/manual/zh/ref.libxml.php"><code>libxml</code></ulink>
  913. ( 依赖 )
  914. <ulink url="http://www.php.net/manual/zh/language.oop5.reflection.php"><code>Reflection</code></ulink>
  915. ( <ulink url="http://framework.zend.com/manual/en/zend.xmlrpc.server.html"><code>Zend_XmlRpc_Server</code></ulink> / 依赖 )
  916. <ulink url="http://www.php.net/manual/zh/ref.simplexml.php"><code>SimpleXML</code></ulink>
  917. ( 依赖 )
  918. </entry>
  919. </row>
  920. </tbody>
  921. </tgroup>
  922. </table>
  923. </sect1>
  924. </appendix>
  925. <!--
  926. vim:se ts=4 sw=4 et:
  927. -->