Zend_Service_Yahoo.xml 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583
  1. <sect1 id="zend.service.yahoo">
  2. <title>Zend_Service_Yahoo</title>
  3. <sect2 id="zend.service.yahoo.introduction">
  4. <title>简介</title>
  5. <para>
  6. <code>Zend_Service_Yahoo</code> 是一个实现多个Yahoo! REST 接口的API.
  7. <code>Zend_Service_Yahoo</code> 允许你使用Yahoo! 网页搜索, Yahoo! 新闻,
  8. Yahoo! 本地(Local), Yahoo! 图片. 为了使用 Yahoo! REST API,
  9. 你必须拥有一个 Yahoo! Application ID. 要获得它, 请访问
  10. <ulink url="http://api.search.yahoo.com/webservices/register_application">Application ID Request Form</ulink>.
  11. </para>
  12. </sect2>
  13. <sect2 id="zend.service.yahoo.websearch">
  14. <title>用Yahoo!来搜索网页</title>
  15. <para>
  16. <code>Zend_Service_Yahoo</code> 允许你用
  17. <code>webSearch()</code> 方法来进行Yahoo! 网页搜索, 它接受一个查询字符串作为参数 ,
  18. 用一个可选的数组传递搜索选项. 更多的细节和搜索选项的信息, 请访问
  19. <ulink url="http://developer.yahoo.net/search/web/V1/webSearch.html">Yahoo! Web Search
  20. Documentation</ulink>. <code>webSearch()</code> 方法返回一个
  21. <code>Zend_Service_Yahoo_WebResultSet</code> 对象.
  22. </para>
  23. <example>
  24. <title>用Yahoo!来搜索网页</title>
  25. <programlisting><![CDATA[<?php
  26. require_once 'Zend/Service/Yahoo.php';
  27. $yahoo = new Zend_Service_Yahoo("YAHOO_APPLICATION_ID");
  28. $results = $yahoo->webSearch('PHP');
  29. foreach ($results as $result) {
  30. echo $result->Title .'<br />';
  31. }
  32. ?>]]> </programlisting>
  33. </example>
  34. </sect2>
  35. <sect2 id="zend.service.yahoo.imagesearch">
  36. <title> 用Yahoo!来查找图片</title>
  37. <para>
  38. 你可以使用<code>Zend_Service_Yahoo</code>的 <code>imageSearch()</code>
  39. 方法来在Yahoo上搜索图片。 。 它接受一个查询字符串作为参数 ,用一个可选的数组传递搜索选项, 就像
  40. <link linkend="zend.service.yahoo.websearch"><code>webSearch()</code> method</link>.
  41. 更多的细节和搜索选项的信息, 请访问
  42. <ulink url="http://developer.yahoo.net/search/image/V1/imageSearch.html">Yahoo! Image Search
  43. Documentation</ulink>.
  44. </para>
  45. <example>
  46. <title>用Yahoo!来查找图片</title>
  47. <programlisting><![CDATA[<?php
  48. require_once 'Zend/Service/Yahoo.php';
  49. $yahoo = new Zend_Service_Yahoo("YAHOO_APPLICATION_ID");
  50. $results = $yahoo->imageSearch('PHP');
  51. foreach ($results as $result) {
  52. echo $result->Title .'<br />';
  53. }
  54. ?>]]> </programlisting>
  55. </example>
  56. </sect2>
  57. <sect2 id="zend.service.yahoo.localsearch">
  58. <title>Finding Local Businesses and Services with Yahoo!</title>
  59. <para>
  60. You can search for local businesses and services with Yahoo! by using the <code>localSearch()</code> method.
  61. For full details, please see the
  62. <ulink url="http://developer.yahoo.net/search/local/V1/localSearch.html">Yahoo! Local Search
  63. Documentation</ulink>.
  64. </para>
  65. <example>
  66. <title>用Yahoo!查找本地商务和服务信息</title>
  67. <programlisting><![CDATA[<?php
  68. require_once 'Zend/Service/Yahoo.php';
  69. $yahoo = new Zend_Service_Yahoo("YAHOO_APPLICATION_ID");
  70. $results = $yahoo->localSearch('Apple Computers', array('zip' => '95014'));
  71. foreach ($results as $result) {
  72. echo $result->Title .'<br />';
  73. }
  74. ?>]]> </programlisting>
  75. </example>
  76. </sect2>
  77. <sect2 id="zend.service.yahoo.newssearch">
  78. <title>搜索Yahoo! 新闻</title>
  79. <para>
  80. 搜索Yahoo! 新闻非常简单; 使用 <code>newsSearch()</code> 方法,
  81. 如下面的例子. 更多的细节和搜索选项的信息, 请访问
  82. <ulink url="http://developer.yahoo.net/search/news/V1/newsSearch.html">Yahoo! News Search
  83. Documentation</ulink>.
  84. </para>
  85. <example>
  86. <title>搜索Yahoo! 新闻</title>
  87. <programlisting><![CDATA[<?php
  88. require_once 'Zend/Service/Yahoo.php';
  89. $yahoo = new Zend_Service_Yahoo("YAHOO_APPLICATION_ID");
  90. $results = $yahoo->newsSearch('PHP');
  91. foreach ($results as $result) {
  92. echo $result->Title .'<br />';
  93. }
  94. ?>]]> </programlisting>
  95. </example>
  96. </sect2>
  97. <sect2 id="zend.service.yahoo.classes">
  98. <title>Zend_Service_Yahoo 类</title>
  99. <para>
  100. 不同的Yahoo! 搜索类型会返回下面的这些类. 每个搜索类型返回指定类型的结果集, 我们可以很方便的对它们进行遍历,
  101. 每个结果被包含在一种类型的结果集对象中. 所有这些对象都实现了
  102. <code>SeekableIterator</code> 接口, 可以很容易的进行遍历和寻找指定结果。
  103. <itemizedlist>
  104. <listitem><para><link linkend="zend.service.yahoo.classes.resultset"><code>Zend_Service_Yahoo_ResultSet</code></link></para></listitem>
  105. <listitem><para><link linkend="zend.service.yahoo.classes.webresultset"><code>Zend_Service_Yahoo_WebResultSet</code></link></para></listitem>
  106. <listitem><para><link linkend="zend.service.yahoo.classes.imageresultset"><code>Zend_Service_Yahoo_ImageResultSet</code></link></para></listitem>
  107. <listitem><para><link linkend="zend.service.yahoo.classes.localresultset"><code>Zend_Service_Yahoo_LocalResultSet</code></link></para></listitem>
  108. <listitem><para><link linkend="zend.service.yahoo.classes.newsresultset"><code>Zend_Service_Yahoo_NewsResultSet</code></link></para></listitem>
  109. <listitem><para><link linkend="zend.service.yahoo.classes.result"><code>Zend_Service_Yahoo_Result</code></link></para></listitem>
  110. <listitem><para><link linkend="zend.service.yahoo.classes.webresult"><code>Zend_Service_Yahoo_WebResult</code></link></para></listitem>
  111. <listitem><para><link linkend="zend.service.yahoo.classes.imageresult"><code>Zend_Service_Yahoo_ImageResult</code></link></para></listitem>
  112. <listitem><para><link linkend="zend.service.yahoo.classes.localresult"><code>Zend_Service_Yahoo_LocalResult</code></link></para></listitem>
  113. <listitem><para><link linkend="zend.service.yahoo.classes.newsresult"><code>Zend_Service_Yahoo_NewsResult</code></link></para></listitem>
  114. <listitem><para><link linkend="zend.service.yahoo.classes.image"><code>Zend_Service_Yahoo_Image</code></link></para></listitem>
  115. </itemizedlist>
  116. </para>
  117. <sect3 id="zend.service.yahoo.classes.resultset">
  118. <title>Zend_Service_Yahoo_ResultSet</title>
  119. <para>
  120. 每类搜索特定的结果集都由这个基类扩展而成
  121. </para>
  122. <para>
  123. 每类搜索特定的结果集都会返回这个搜索特定的
  124. <link linkend="zend.service.yahoo.classes.result">Zend_Service_Yahoo_Result</link> 对象.
  125. </para>
  126. <sect4 id="zend.service.yahoo.classes.resultset.totalResults">
  127. <title>Zend_Service_Yahoo_ResultSet::totalResults()</title>
  128. <para>
  129. <methodsynopsis>
  130. <type>int</type>
  131. <methodname>totalResults</methodname>
  132. <void />
  133. </methodsynopsis>
  134. </para>
  135. <para>
  136. 返回搜索结果的数量
  137. </para>
  138. </sect4>
  139. <sect4 id="zend.service.yahoo.classes.resultset.properties">
  140. <title>Properties</title>
  141. <table>
  142. <title>Zend_Service_Yahoo_ResultSet</title>
  143. <tgroup cols="3">
  144. <thead>
  145. <row>
  146. <entry>名称</entry>
  147. <entry>类型</entry>
  148. <entry>描述</entry>
  149. </row>
  150. </thead>
  151. <tbody>
  152. <row>
  153. <entry>totalResultsAvailable</entry>
  154. <entry>int</entry>
  155. <entry>
  156. 所有找到的结果的数量
  157. </entry>
  158. </row>
  159. <row>
  160. <entry>totalResultsReturned</entry>
  161. <entry>int</entry>
  162. <entry>当前结果集中结果的数量</entry>
  163. </row>
  164. <row>
  165. <entry>firstResultPosition</entry>
  166. <entry>int</entry>
  167. <entry>当前结果集中的第一条在所有结果中的相对位置</entry>
  168. </row>
  169. </tbody>
  170. </tgroup>
  171. </table>
  172. <para>
  173. <link linkend="zend.service.yahoo.classes">Back to Class List</link>
  174. </para>
  175. </sect4>
  176. </sect3>
  177. <sect3 id="zend.service.yahoo.classes.webresultset">
  178. <title>Zend_Service_Yahoo_WebResultSet</title>
  179. <para>
  180. <code>Zend_Service_Yahoo_WebResultSet</code> 代表 Yahoo! 网页搜索的结果集.
  181. </para>
  182. <note>
  183. <para>
  184. <code>Zend_Service_Yahoo_WebResultSet</code> 扩展自 <link linkend="zend.service.yahoo.classes.resultset">Zend_Service_Yahoo_ResultSet</link>
  185. </para>
  186. </note>
  187. <para>
  188. <link linkend="zend.service.yahoo.classes">Back to Class List</link>
  189. </para>
  190. </sect3>
  191. <sect3 id="zend.service.yahoo.classes.imageresultset">
  192. <title>Zend_Service_Yahoo_ImageResultSet</title>
  193. <para>
  194. <code>Zend_Service_Yahoo_ImageResultSet</code> 代表一个 Yahoo! 图片搜索结果集
  195. </para>
  196. <note>
  197. <para>
  198. <code>Zend_Service_Yahoo_ImageResultSet</code> 扩展自 <link linkend="zend.service.yahoo.classes.resultset">Zend_Service_Yahoo_ResultSet</link>
  199. </para>
  200. </note>
  201. <para>
  202. <link linkend="zend.service.yahoo.classes">Back to Class List</link>
  203. </para>
  204. </sect3>
  205. <sect3 id="zend.service.yahoo.classes.localresultset">
  206. <title>Zend_Service_Yahoo_LocalResultSet</title>
  207. <para>
  208. <code>Zend_Service_Yahoo_LocalResultSet</code> 代表一个Yahoo!本地搜索的结果集
  209. </para>
  210. <table>
  211. <title>Zend_Service_Yahoo_LocalResultSet 属性</title>
  212. <tgroup cols="3">
  213. <thead>
  214. <row>
  215. <entry>名称</entry>
  216. <entry>类型</entry>
  217. <entry>描述</entry>
  218. </row>
  219. </thead>
  220. <tbody>
  221. <row>
  222. <entry>resultSetMapURL</entry>
  223. <entry>string</entry>
  224. <entry>包含返回查询结果地图的URL</entry>
  225. </row>
  226. </tbody>
  227. </tgroup>
  228. </table>
  229. <note>
  230. <para>
  231. <code>Zend_Service_Yahoo_LocalResultSet</code> 扩展自 <link linkend="zend.service.yahoo.classes.resultset">Zend_Service_Yahoo_ResultSet</link>
  232. </para>
  233. </note>
  234. <para>
  235. <link linkend="zend.service.yahoo.classes">Back to Class List</link>
  236. </para>
  237. </sect3>
  238. <sect3 id="zend.service.yahoo.classes.newsresultset">
  239. <title>Zend_Service_Yahoo_NewsResultSet</title>
  240. <para>
  241. <code>Zend_Service_Yahoo_NewsResultSet</code> 代表一个Yahoo!新闻搜索结果的集合
  242. </para>
  243. <note>
  244. <para>
  245. <code>Zend_Service_Yahoo_NewsResultSet</code> 扩展自 <link linkend="zend.service.yahoo.classes.resultset">Zend_Service_Yahoo_ResultSet</link>
  246. </para>
  247. </note>
  248. <para>
  249. <link linkend="zend.service.yahoo.classes">Back to Class List</link>
  250. </para>
  251. </sect3>
  252. <sect3 id="zend.service.yahoo.classes.result">
  253. <title>Zend_Service_Yahoo_Result</title>
  254. <para>
  255. 每类搜索特定的结果都由这个基类扩展而成
  256. </para>
  257. <sect4 id="zend.service.yahoo.classes.result.properties">
  258. <title>Properties</title>
  259. <table>
  260. <title>Zend_Service_Yahoo_Result Properties</title>
  261. <tgroup cols="3">
  262. <thead>
  263. <row>
  264. <entry>名称</entry>
  265. <entry>类型</entry>
  266. <entry>描述</entry>
  267. </row>
  268. </thead>
  269. <tbody>
  270. <row>
  271. <entry>Title</entry>
  272. <entry>string</entry>
  273. <entry>结果项的标题</entry>
  274. </row>
  275. <row>
  276. <entry>Url</entry>
  277. <entry>string</entry>
  278. <entry>结果项的url</entry>
  279. </row>
  280. <row>
  281. <entry>ClickUrl</entry>
  282. <entry>string</entry>
  283. <entry>链接到结果项的url</entry>
  284. </row>
  285. </tbody>
  286. </tgroup>
  287. </table>
  288. <para>
  289. <link linkend="zend.service.yahoo.classes">Back to Class List</link>
  290. </para>
  291. </sect4>
  292. </sect3>
  293. <sect3 id="zend.service.yahoo.classes.webresult">
  294. <title>Zend_Service_Yahoo_WebResult</title>
  295. <para>
  296. 每一个网页搜索结果作为一个 <code>Zend_Service_Yahoo_WebResult</code> 对相返回.
  297. </para>
  298. <sect4 id="zend.service.yahoo.classes.webresult.properties">
  299. <title>属性</title>
  300. <table>
  301. <title>Zend_Service_Yahoo_WebResult 属性</title>
  302. <tgroup cols="3">
  303. <thead>
  304. <row>
  305. <entry>名称</entry>
  306. <entry>类型</entry>
  307. <entry>描述</entry>
  308. </row>
  309. </thead>
  310. <tbody>
  311. <row>
  312. <entry>Summary</entry>
  313. <entry>string</entry>
  314. <entry>返回结果的摘要</entry>
  315. </row>
  316. <row>
  317. <entry>MimeType</entry>
  318. <entry>string</entry>
  319. <entry>返回结果的mimetype</entry>
  320. </row>
  321. <row>
  322. <entry>ModificationDate</entry>
  323. <entry>string</entry>
  324. <entry>一个以 UNIX timestamp 表示的最后修改日期.</entry>
  325. </row>
  326. <row>
  327. <entry>CacheUrl</entry>
  328. <entry>string</entry>
  329. <entry>返回结果Yahoo! 网页搜索缓存页面的URL</entry>
  330. </row>
  331. <row>
  332. <entry>CacheSize</entry>
  333. <entry>int</entry>
  334. <entry>Cache 项目的大小</entry>
  335. </row>
  336. </tbody>
  337. </tgroup>
  338. </table>
  339. <para>
  340. <link linkend="zend.service.yahoo.classes">Back to Class List</link>
  341. </para>
  342. </sect4>
  343. </sect3>
  344. <sect3 id="zend.service.yahoo.classes.imageresult">
  345. <title>Zend_Service_Yahoo_ImageResult</title>
  346. <para>
  347. 每一个图片搜索结果作为一个 <code>Zend_Service_Yahoo_ImageResult</code> 对相返回.
  348. </para>
  349. <sect4 id="zend.service.yahoo.classes.imageresult.properties">
  350. <title>属性</title>
  351. <table>
  352. <title>Zend_Service_Yahoo_ImageResult 属性</title>
  353. <tgroup cols="3">
  354. <thead>
  355. <row>
  356. <entry>名称</entry>
  357. <entry>类型</entry>
  358. <entry>描述</entry>
  359. </row>
  360. </thead>
  361. <tbody>
  362. <row>
  363. <entry>Summary</entry>
  364. <entry>string</entry>
  365. <entry>返回结果的摘要</entry>
  366. </row>
  367. <row>
  368. <entry>RefererUrl</entry>
  369. <entry>string</entry>
  370. <entry>图片引用页的URL</entry>
  371. </row>
  372. <row>
  373. <entry>FileSize</entry>
  374. <entry>int</entry>
  375. <entry>以bytes为单位的图片大小</entry>
  376. </row>
  377. <row>
  378. <entry>FileFormat</entry>
  379. <entry>string</entry>
  380. <entry>图片的格式 (bmp, gif, jpeg, png, etc.)</entry>
  381. </row>
  382. <row>
  383. <entry>Height</entry>
  384. <entry>int</entry>
  385. <entry>图片的高</entry>
  386. </row>
  387. <row>
  388. <entry>Width</entry>
  389. <entry>int</entry>
  390. <entry>图片的宽</entry>
  391. </row>
  392. <row>
  393. <entry>Thumbnail</entry>
  394. <entry><link linkend="zend.service.yahoo.classes.image">Zend_Service_Yahoo_Image</link></entry>
  395. <entry>图片的缩略图</entry>
  396. </row>
  397. </tbody>
  398. </tgroup>
  399. </table>
  400. <para>
  401. <link linkend="zend.service.yahoo.classes">Back to Class List</link>
  402. </para>
  403. </sect4>
  404. </sect3>
  405. <sect3 id="zend.service.yahoo.classes.localresult">
  406. <title>Zend_Service_Yahoo_LocalResult</title>
  407. <para>
  408. 每一个本地搜索结果以 <code>Zend_Service_Yahoo_LocalResult</code> 对相返回.
  409. </para>
  410. <sect4 id="zend.service.yahoo.classes.localresult.properties">
  411. <title>属性</title>
  412. <table>
  413. <title>Zend_Service_Yahoo_LocalResult 属性</title>
  414. <tgroup cols="3">
  415. <thead>
  416. <row>
  417. <entry>名称</entry>
  418. <entry>类型</entry>
  419. <entry>描述</entry>
  420. </row>
  421. </thead>
  422. <tbody>
  423. <row>
  424. <entry>Address</entry>
  425. <entry>string</entry>
  426. <entry>搜索结果的街道地址</entry>
  427. </row>
  428. <row>
  429. <entry>City</entry>
  430. <entry>string</entry>
  431. <entry>搜索结果所在的城市</entry>
  432. </row>
  433. <row>
  434. <entry>State</entry>
  435. <entry>string</entry>
  436. <entry>搜索结果所在的州</entry>
  437. </row>
  438. <row>
  439. <entry>Phone</entry>
  440. <entry>string</entry>
  441. <entry>搜索结果相关的电话号码</entry>
  442. </row>
  443. <row>
  444. <entry>Rating</entry>
  445. <entry>int</entry>
  446. <entry>用户对该结果的评分</entry>
  447. </row>
  448. <row>
  449. <entry>Distance</entry>
  450. <entry>float</entry>
  451. <entry>从你指定的位置到搜索结果的距离</entry>
  452. </row>
  453. <row>
  454. <entry>MapUrl</entry>
  455. <entry>string</entry>
  456. <entry>搜索结果地图的URL</entry>
  457. </row>
  458. <row>
  459. <entry>BusinessUrl</entry>
  460. <entry>string</entry>
  461. <entry>商务网站的URL (如果知道的话)</entry>
  462. </row>
  463. <row>
  464. <entry>BusinessClickUrl</entry>
  465. <entry>string</entry>
  466. <entry>链接到商务网站的URL (如果知道的话)</entry>
  467. </row>
  468. </tbody>
  469. </tgroup>
  470. </table>
  471. <para>
  472. <link linkend="zend.service.yahoo.classes">Back to Class List</link>
  473. </para>
  474. </sect4>
  475. </sect3>
  476. <sect3 id="zend.service.yahoo.classes.newsresult">
  477. <title>Zend_Service_Yahoo_NewsResult</title>
  478. <para>
  479. 每一个新闻搜索结果作为一个 <code>Zend_Service_Yahoo_NewsResult</code> 对相返回.
  480. </para>
  481. <sect4 id="zend.service.yahoo.classes.newsresult.properties">
  482. <title>属性</title>
  483. <table>
  484. <title>Zend_Service_Yahoo_NewsResult 属性</title>
  485. <tgroup cols="3">
  486. <thead>
  487. <row>
  488. <entry>名称</entry>
  489. <entry>类型</entry>
  490. <entry>描述</entry>
  491. </row>
  492. </thead>
  493. <tbody>
  494. <row>
  495. <entry>Summary</entry>
  496. <entry>string</entry>
  497. <entry>返回结果的摘要</entry>
  498. </row>
  499. <row>
  500. <entry>NewsSource</entry>
  501. <entry>string</entry>
  502. <entry>发布文章的公司</entry>
  503. </row>
  504. <row>
  505. <entry>NewsSourceUrl</entry>
  506. <entry>string</entry>
  507. <entry>发布文章的公司的URL</entry>
  508. </row>
  509. <row>
  510. <entry>Language</entry>
  511. <entry>string</entry>
  512. <entry>文章所用的语言</entry>
  513. </row>
  514. <row>
  515. <entry>PublishDate</entry>
  516. <entry>string</entry>
  517. <entry>用 UNIX timestamp表示的文章发布日期</entry>
  518. </row>
  519. <row>
  520. <entry>ModificationDate</entry>
  521. <entry>string</entry>
  522. <entry>用 UNIX timestamp表示的文章最后更新日期</entry>
  523. </row>
  524. <row>
  525. <entry>Thumbnail</entry>
  526. <entry><link linkend="zend.service.yahoo.classes.image">Zend_Service_Yahoo_Image</link></entry>
  527. <entry>文章的缩略图,如果有的话</entry>
  528. </row>
  529. </tbody>
  530. </tgroup>
  531. </table>
  532. <para>
  533. <link linkend="zend.service.yahoo.classes">Back to Class List</link>
  534. </para>
  535. </sect4>
  536. </sect3>
  537. <sect3 id="zend.service.yahoo.classes.image">
  538. <title>Zend_Service_Yahoo_Image</title>
  539. <para>
  540. 所有的Yahoo!图片和新闻搜索返回的图片都作为
  541. <code>Zend_Service_Yahoo_Image</code> 对相返回
  542. </para>
  543. <sect4 id="zend.service.yahoo.classes.image.properties">
  544. <title>Properties</title>
  545. <table>
  546. <title>Zend_Service_Yahoo_Image Properties</title>
  547. <tgroup cols="3">
  548. <thead>
  549. <row>
  550. <entry>名称</entry>
  551. <entry>类型</entry>
  552. <entry>描述</entry>
  553. </row>
  554. </thead>
  555. <tbody>
  556. <row>
  557. <entry>Url</entry>
  558. <entry>string</entry>
  559. <entry>图片URL</entry>
  560. </row>
  561. <row>
  562. <entry>Width</entry>
  563. <entry>int</entry>
  564. <entry>图片的宽</entry>
  565. </row>
  566. <row>
  567. <entry>Height</entry>
  568. <entry>int</entry>
  569. <entry>图片的高</entry>
  570. </row>
  571. </tbody>
  572. </tgroup>
  573. </table>
  574. <para>
  575. <link linkend="zend.service.yahoo.classes">Back to Class List</link>
  576. </para>
  577. </sect4>
  578. </sect3>
  579. </sect2>
  580. </sect1>
  581. <!--
  582. vim:se ts=4 sw=4 et:
  583. -->