1 <?xml version="1.0" encoding="UTF-8"?>
3 <!-- EN-Revision: 20843 -->
4 <sect1 id="zend.service.yahoo">
5 <title>Zend_Service_Yahoo</title>
6 <sect2 id="zend.service.yahoo.introduction">
9 <classname>Zend_Service_Yahoo</classname> は、さまざまな Yahoo! REST <acronym>API</acronym>
10 群を使用するための単純な <acronym>API</acronym> です。
11 <classname>Zend_Service_Yahoo</classname> を使用すると、
12 Yahoo! Web search、Yahoo! News、Yahoo! Local、Yahoo! Images
13 を検索できるようになります。 Yahoo! REST <acronym>API</acronym> を使用するには、
14 Yahoo! Application ID が必要です。Application ID を取得するには、
15 <ulink url="http://developer.yahoo.com/wsregapp/">Application ID リクエストフォーム</ulink>
19 <sect2 id="zend.service.yahoo.websearch">
20 <title>Yahoo! を使用したウェブの検索</title>
22 <classname>Zend_Service_Yahoo</classname> の <methodname>webSearch()</methodname>
23 メソッドを使用すると、Yahoo! でウェブを検索できます。
25 オプションで二番目の引数に検索オプションの配列を指定します。
27 <ulink url="http://developer.yahoo.com/search/web/V1/webSearch.html">Yahoo! Web Search
28 ドキュメント</ulink> を参照ください。<methodname>webSearch()</methodname> メソッドは
29 <classname>Zend_Service_Yahoo_WebResultSet</classname> オブジェクトを返します。
31 <example id="zend.service.yahoo.websearch.example-1">
32 <title>Yahoo! を使用したウェブの検索</title>
33 <programlisting language="php"><![CDATA[
34 $yahoo = new Zend_Service_Yahoo("YAHOO_APPLICATION_ID");
35 $results = $yahoo->webSearch('PHP');
36 foreach ($results as $result) {
37 echo $result->Title .'<br />';
42 <sect2 id="zend.service.yahoo.imagesearch">
43 <title>Yahoo! を使用した画像の検索</title>
45 <classname>Zend_Service_Yahoo</classname> の <methodname>imageSearch()</methodname>
46 メソッドを使用すると、画像の検索ができます。
47 <link linkend="zend.service.yahoo.websearch"><methodname>webSearch()</methodname> メソッド</link>
49 オプションで二番目の引数に検索オプションの配列を指定します。
51 <ulink url="http://developer.yahoo.com/search/image/V1/imageSearch.html">Yahoo! Image Search
52 ドキュメント</ulink> を参照ください。
54 <example id="zend.service.yahoo.imagesearch.example-1">
55 <title>Yahoo! を使用した画像の検索</title>
56 <programlisting language="php"><![CDATA[
57 $yahoo = new Zend_Service_Yahoo("YAHOO_APPLICATION_ID");
58 $results = $yahoo->imageSearch('PHP');
59 foreach ($results as $result) {
60 echo $result->Title .'<br />';
65 <sect2 id="zend.service.yahoo.videosearch">
66 <title>Yahoo! を使用した動画の検索</title>
68 <classname>Zend_Service_Yahoo</classname> の <methodname>videoSearch()</methodname>
69 メソッドを使用すると、Yahoo で動画を検索できます。
71 <ulink url="http://developer.yahoo.com/search/video/V1/videoSearch.html">Yahoo! Video Search
72 ドキュメント</ulink> を参照ください。
74 <example id="zend.service.yahoo.videosearch.example-1">
75 <title>Yahoo! を使用した動画の検索</title>
76 <programlisting language="php"><![CDATA[
77 $yahoo = new Zend_Service_Yahoo("YAHOO_APPLICATION_ID");
78 $results = $yahoo->videoSearch('PHP');
79 foreach ($results as $result) {
80 echo $result->Title .'<br />';
85 <sect2 id="zend.service.yahoo.localsearch">
86 <title>Yahoo! を使用した Local Businesses and Services の検索</title>
88 <methodname>localSearch()</methodname> メソッドを使用すると、
89 Yahoo! で local businesses and services を検索できます。
91 <ulink url="http://developer.yahoo.com/search/local/V1/localSearch.html">Yahoo! Local Search
92 ドキュメント</ulink> を参照ください。
94 <example id="zend.service.yahoo.localsearch.example-1">
95 <title>Yahoo! を使用した Local Businesses and Services の検索</title>
96 <programlisting language="php"><![CDATA[
97 $yahoo = new Zend_Service_Yahoo("YAHOO_APPLICATION_ID");
98 $results = $yahoo->localSearch('Apple Computers', array('zip' => '95014'));
99 foreach ($results as $result) {
100 echo $result->Title .'<br />';
105 <sect2 id="zend.service.yahoo.newssearch">
106 <title>Yahoo! News の検索</title>
108 Yahoo! News を検索するのは簡単です。単に <methodname>newsSearch()</methodname>
109 メソッドを下の例のように使用すればよいのです。詳細は
110 <ulink url="http://developer.yahoo.com/search/news/V1/newsSearch.html">Yahoo! News Search
111 ドキュメント</ulink> を参照ください。
113 <example id="zend.service.yahoo.newssearch.example-1">
114 <title>Yahoo! News の検索</title>
115 <programlisting language="php"><![CDATA[
116 $yahoo = new Zend_Service_Yahoo("YAHOO_APPLICATION_ID");
117 $results = $yahoo->newsSearch('PHP');
118 foreach ($results as $result) {
119 echo $result->Title .'<br />';
124 <sect2 id="zend.service.yahoo.inlinkdatasearch">
125 <title>Yahoo! Site Explorer Inbound Links の検索</title>
127 Yahoo! Site Explorer Inbound Links を検索するのは簡単です。
128 単に <methodname>inlinkDataSearch()</methodname>
129 メソッドを下の例のように使用すればいいのです。詳細は
130 <ulink url="http://developer.yahoo.com/search/siteexplorer/V1/inlinkData.html">Yahoo!
131 Site Explorer Inbound Links ドキュメント</ulink> を参照ください。
133 <example id="zend.service.yahoo.inlinkdatasearch.example-1">
134 <title>Yahoo! Site Explorer Inbound Links の検索</title>
135 <programlisting language="php"><![CDATA[
136 $yahoo = new Zend_Service_Yahoo("YAHOO_APPLICATION_ID");
137 $results = $yahoo->inlinkDataSearch('http://framework.zend.com/');
138 foreach ($results as $result) {
139 echo $result->Title .'<br />';
144 <sect2 id="zend.service.yahoo.pagedatasearch">
145 <title>Yahoo! Site Explorer の PageData の検索</title>
147 Yahoo! Site Explorer Inbound の PageDate を検索するのは簡単です。
148 単に <methodname>pageDataSearch()</methodname>
149 メソッドを下の例のように使用すればいいのです。詳細は
150 <ulink url="http://developer.yahoo.com/search/siteexplorer/V1/pageData.html">Yahoo!
151 Site Explorer PageData ドキュメント</ulink> を参照ください。
153 <example id="zend.service.yahoo.pagedatasearch.example-1">
154 <title>Yahoo! Site Explorer の PageData の検索</title>
155 <programlisting language="php"><![CDATA[
156 $yahoo = new Zend_Service_Yahoo("YAHOO_APPLICATION_ID");
157 $results = $yahoo->pageDataSearch('http://framework.zend.com/');
158 foreach ($results as $result) {
159 echo $result->Title .'<br />';
164 <sect2 id="zend.service.yahoo.classes">
165 <title>Zend_Service_Yahoo クラス群</title>
167 Yahoo! 検索から返される結果は、以下のクラスのいずれかとなります。
168 検索の種類によってそれに対応した結果セットが返され、
169 そのセットを順に処理していくと、中には検索の種類に応じた結果オブジェクトが含まれます。
170 すべての結果セットクラスは <classname>SeekableIterator</classname>
172 そのため、順次処理だけでなく特定の結果の処理も簡単にできます。
174 <listitem><para><link linkend="zend.service.yahoo.classes.resultset"><classname>Zend_Service_Yahoo_ResultSet</classname></link></para></listitem>
175 <listitem><para><link linkend="zend.service.yahoo.classes.webresultset"><classname>Zend_Service_Yahoo_WebResultSet</classname></link></para></listitem>
176 <listitem><para><link linkend="zend.service.yahoo.classes.imageresultset"><classname>Zend_Service_Yahoo_ImageResultSet</classname></link></para></listitem>
177 <listitem><para><link linkend="zend.service.yahoo.classes.videoresultset"><classname>Zend_Service_Yahoo_VideoResultSet</classname></link></para></listitem>
178 <listitem><para><link linkend="zend.service.yahoo.classes.localresultset"><classname>Zend_Service_Yahoo_LocalResultSet</classname></link></para></listitem>
179 <listitem><para><link linkend="zend.service.yahoo.classes.newsresultset"><classname>Zend_Service_Yahoo_NewsResultSet</classname></link></para></listitem>
180 <listitem><para><link linkend="zend.service.yahoo.classes.inlinkdataresultset"><classname>Zend_Service_Yahoo_InlinkDataResultSet</classname></link></para></listitem>
181 <listitem><para><link linkend="zend.service.yahoo.classes.pagedataresultset"><classname>Zend_Service_Yahoo_PageDataResultSet</classname></link></para></listitem>
182 <listitem><para><link linkend="zend.service.yahoo.classes.result"><classname>Zend_Service_Yahoo_Result</classname></link></para></listitem>
183 <listitem><para><link linkend="zend.service.yahoo.classes.webresult"><classname>Zend_Service_Yahoo_WebResult</classname></link></para></listitem>
184 <listitem><para><link linkend="zend.service.yahoo.classes.imageresult"><classname>Zend_Service_Yahoo_ImageResult</classname></link></para></listitem>
185 <listitem><para><link linkend="zend.service.yahoo.classes.videoresult"><classname>Zend_Service_Yahoo_VideoResult</classname></link></para></listitem>
186 <listitem><para><link linkend="zend.service.yahoo.classes.localresult"><classname>Zend_Service_Yahoo_LocalResult</classname></link></para></listitem>
187 <listitem><para><link linkend="zend.service.yahoo.classes.newsresult"><classname>Zend_Service_Yahoo_NewsResult</classname></link></para></listitem>
188 <listitem><para><link linkend="zend.service.yahoo.classes.inlinkdataresult"><classname>Zend_Service_Yahoo_InlinkDataResult</classname></link></para></listitem>
189 <listitem><para><link linkend="zend.service.yahoo.classes.pagedataresult"><classname>Zend_Service_Yahoo_PageDataResult</classname></link></para></listitem>
190 <listitem><para><link linkend="zend.service.yahoo.classes.image"><classname>Zend_Service_Yahoo_Image</classname></link></para></listitem>
193 <sect3 id="zend.service.yahoo.classes.resultset">
194 <title>Zend_Service_Yahoo_ResultSet</title>
196 検索の種類に応じた結果セットは、この基底クラスを継承したものです。
200 <link linkend="zend.service.yahoo.classes.result">Zend_Service_Yahoo_Result</link>
203 <sect4 id="zend.service.yahoo.classes.resultset.totalResults">
204 <title>Zend_Service_Yahoo_ResultSet::totalResults()</title>
208 <methodname>totalResults</methodname>
213 検索結果として返された結果の総数を返します。
216 <sect4 id="zend.service.yahoo.classes.resultset.properties">
218 <table id="zend.service.yahoo.classes.resultset.properties.table-1">
219 <title>Zend_Service_Yahoo_ResultSet</title>
230 <entry>totalResultsAvailable</entry>
237 <entry>totalResultsReturned</entry>
239 <entry>現在の結果セットに含まれる結果の総数。</entry>
242 <entry>firstResultPosition</entry>
244 <entry>このセットの最初の結果の、結果全体の中での位置。</entry>
250 <link linkend="zend.service.yahoo.classes">クラス一覧に戻る</link>
254 <sect3 id="zend.service.yahoo.classes.webresultset">
255 <title>Zend_Service_Yahoo_WebResultSet</title>
257 <classname>Zend_Service_Yahoo_WebResultSet</classname> は Yahoo! Web Search
262 <classname>Zend_Service_Yahoo_WebResultSet</classname> は
263 <link linkend="zend.service.yahoo.classes.resultset">Zend_Service_Yahoo_ResultSet</link>
268 <link linkend="zend.service.yahoo.classes">クラス一覧に戻る</link>
271 <sect3 id="zend.service.yahoo.classes.imageresultset">
272 <title>Zend_Service_Yahoo_ImageResultSet</title>
274 <classname>Zend_Service_Yahoo_ImageResultSet</classname> は、Yahoo! Image Search
279 <classname>Zend_Service_Yahoo_ImageResultSet</classname> は
280 <link linkend="zend.service.yahoo.classes.resultset">Zend_Service_Yahoo_ResultSet</link>
285 <link linkend="zend.service.yahoo.classes">クラス一覧に戻る</link>
288 <sect3 id="zend.service.yahoo.classes.videoresultset">
289 <title>Zend_Service_Yahoo_VideoResultSet</title>
291 <classname>Zend_Service_Yahoo_VideoResultSet</classname> は、Yahoo! Video Search
296 <classname>Zend_Service_Yahoo_VideoResultSet</classname> は
297 <link linkend="zend.service.yahoo.classes.resultset">Zend_Service_Yahoo_ResultSet</link>
302 <link linkend="zend.service.yahoo.classes">クラス一覧に戻る</link>
305 <sect3 id="zend.service.yahoo.classes.localresultset">
306 <title>Zend_Service_Yahoo_LocalResultSet</title>
308 <classname>Zend_Service_Yahoo_LocalResultSet</classname> は、Yahoo! Local Search
311 <table id="zend.service.yahoo.classes.localresultset.table-1">
312 <title>Zend_Service_Yahoo_LocalResultSet のプロパティ</title>
323 <entry>resultSetMapURL</entry>
324 <entry>string</entry>
325 <entry>返される結果が記された地図画像を含むウェブページの <acronym>URL</acronym>。</entry>
332 <classname>Zend_Service_Yahoo_LocalResultSet</classname> は
333 <link linkend="zend.service.yahoo.classes.resultset">Zend_Service_Yahoo_ResultSet</link>
338 <link linkend="zend.service.yahoo.classes">クラス一覧に戻る</link>
341 <sect3 id="zend.service.yahoo.classes.newsresultset">
342 <title>Zend_Service_Yahoo_NewsResultSet</title>
344 <classname>Zend_Service_Yahoo_NewsResultSet</classname> は、Yahoo! News Search
349 <classname>Zend_Service_Yahoo_NewsResultSet</classname> は
350 <link linkend="zend.service.yahoo.classes.resultset">Zend_Service_Yahoo_ResultSet</link>
355 <link linkend="zend.service.yahoo.classes">クラス一覧に戻る</link>
358 <sect3 id="zend.service.yahoo.classes.inlinkdataresultset">
359 <title>Zend_Service_Yahoo_InlinkDataResultSet</title>
361 <classname>Zend_Service_Yahoo_InlinkDataResultSet</classname> は、
362 Yahoo! Inbound Link Search の結果セットを表します。
366 <classname>Zend_Service_Yahoo_InlinkDataResultSet</classname> は
367 <link linkend="zend.service.yahoo.classes.resultset">Zend_Service_Yahoo_ResultSet</link>
372 <link linkend="zend.service.yahoo.classes">クラス一覧に戻る</link>
375 <sect3 id="zend.service.yahoo.classes.pagedataresultset">
376 <title>Zend_Service_Yahoo_PageDataResultSet</title>
378 <classname>Zend_Service_Yahoo_PageDataResultSet</classname> は、
379 Yahoo! PageData Search の結果セットを表します。
383 <classname>Zend_Service_Yahoo_PageDataResultSet</classname> は
384 <link linkend="zend.service.yahoo.classes.resultset">Zend_Service_Yahoo_ResultSet</link>
389 <link linkend="zend.service.yahoo.classes">クラス一覧に戻る</link>
392 <sect3 id="zend.service.yahoo.classes.result">
393 <title>Zend_Service_Yahoo_Result</title>
395 検索の種類に応じた検索結果は、この基底クラスを継承したものです。
397 <sect4 id="zend.service.yahoo.classes.result.properties">
399 <table id="zend.service.yahoo.classes.result.properties.table-1">
400 <title>Zend_Service_Yahoo_Result のプロパティ</title>
412 <entry>string</entry>
413 <entry>結果項目のタイトル</entry>
417 <entry>string</entry>
418 <entry>結果項目の <acronym>URL</acronym></entry>
421 <entry>ClickUrl</entry>
422 <entry>string</entry>
423 <entry>結果項目へリンクする <acronym>URL</acronym></entry>
429 <link linkend="zend.service.yahoo.classes">クラス一覧に戻る</link>
433 <sect3 id="zend.service.yahoo.classes.webresult">
434 <title>Zend_Service_Yahoo_WebResult</title>
436 Web Search の結果は <classname>Zend_Service_Yahoo_WebResult</classname>
439 <sect4 id="zend.service.yahoo.classes.webresult.properties">
441 <table id="zend.service.yahoo.classes.webresult.properties.table-1">
442 <title>Zend_Service_Yahoo_WebResult のプロパティ</title>
453 <entry>Summary</entry>
454 <entry>string</entry>
458 <entry>MimeType</entry>
459 <entry>string</entry>
460 <entry>結果の <acronym>MIME</acronym> 型</entry>
463 <entry>ModificationDate</entry>
464 <entry>string</entry>
465 <entry><acronym>UNIX</acronym> タイムスタンプで表した、結果の最終更新時刻</entry>
468 <entry>CacheUrl</entry>
469 <entry>string</entry>
470 <entry>結果に対応する Yahoo! ウェブキャッシュの <acronym>URL</acronym> (もし存在すれば)</entry>
473 <entry>CacheSize</entry>
475 <entry>キャッシュエントリの大きさ</entry>
481 <link linkend="zend.service.yahoo.classes">クラス一覧に戻る</link>
485 <sect3 id="zend.service.yahoo.classes.imageresult">
486 <title>Zend_Service_Yahoo_ImageResult</title>
488 Image Search の結果は <classname>Zend_Service_Yahoo_ImageResult</classname>
491 <sect4 id="zend.service.yahoo.classes.imageresult.properties">
493 <table id="zend.service.yahoo.classes.imageresult.properties.table-1">
494 <title>Zend_Service_Yahoo_ImageResult のプロパティ</title>
505 <entry>Summary</entry>
506 <entry>string</entry>
510 <entry>RefererUrl</entry>
511 <entry>string</entry>
512 <entry>画像を含むページの <acronym>URL</acronym></entry>
515 <entry>FileSize</entry>
517 <entry>画像ファイルのバイト数</entry>
520 <entry>FileFormat</entry>
521 <entry>string</entry>
522 <entry>画像の形式 (bmp、gif、jpeg、png など)</entry>
525 <entry>Height</entry>
535 <entry>Thumbnail</entry>
536 <entry><link linkend="zend.service.yahoo.classes.image">Zend_Service_Yahoo_Image</link></entry>
537 <entry>画像のサムネイル</entry>
543 <link linkend="zend.service.yahoo.classes">クラス一覧に戻る</link>
547 <sect3 id="zend.service.yahoo.classes.videoresult">
548 <title>Zend_Service_Yahoo_VideoResult</title>
550 Video Search の結果は<classname>Zend_Service_Yahoo_VideoResult</classname>
553 <sect4 id="zend.service.yahoo.classes.videoresult.properties">
555 <table id="zend.service.yahoo.classes.videoresult.properties.table-1">
556 <title>Zend_Service_Yahoo_VideoResult のプロパティ</title>
567 <entry>Summary</entry>
568 <entry>string</entry>
572 <entry>RefererUrl</entry>
573 <entry>string</entry>
574 <entry>動画を含むページの <acronym>URL</acronym></entry>
577 <entry>FileSize</entry>
579 <entry>動画のサイズを表すバイト数</entry>
582 <entry>FileFormat</entry>
583 <entry>string</entry>
584 <entry>動画のフォーマット (avi, flash, mpeg, msmedia, quicktime, realmedia, など)</entry>
587 <entry>Height</entry>
589 <entry>動画の高さを表すピクセル数</entry>
594 <entry>動画の幅を表すピクセル数</entry>
597 <entry>Duration</entry>
599 <entry>動画の長さを表す秒数</entry>
602 <entry>Channels</entry>
604 <entry>動画の音声チャネル数</entry>
607 <entry>Streaming</entry>
608 <entry>boolean</entry>
609 <entry>ストリーミング形式かどうか</entry>
612 <entry>Thumbnail</entry>
613 <entry><link linkend="zend.service.yahoo.classes.image">Zend_Service_Yahoo_Image</link></entry>
614 <entry>画像のサムネイル</entry>
620 <link linkend="zend.service.yahoo.classes">クラス一覧に戻る</link>
624 <sect3 id="zend.service.yahoo.classes.localresult">
625 <title>Zend_Service_Yahoo_LocalResult</title>
627 Local Search の結果は <classname>Zend_Service_Yahoo_LocalResult</classname>
630 <sect4 id="zend.service.yahoo.classes.localresult.properties">
632 <table id="zend.service.yahoo.classes.localresult.properties.table-1">
633 <title>Zend_Service_Yahoo_LocalResult のプロパティ</title>
644 <entry>Address</entry>
645 <entry>string</entry>
650 <entry>string</entry>
651 <entry>結果が存在する市</entry>
655 <entry>string</entry>
656 <entry>結果が存在する州</entry>
660 <entry>string</entry>
661 <entry>結果の電話番号</entry>
664 <entry>Rating</entry>
666 <entry>結果に対するユーザの評価</entry>
669 <entry>Distance</entry>
671 <entry>指定した位置から結果の位置までの距離</entry>
674 <entry>MapUrl</entry>
675 <entry>string</entry>
676 <entry>結果の地図の <acronym>URL</acronym></entry>
679 <entry>BusinessUrl</entry>
680 <entry>string</entry>
681 <entry>ビジネスウェブサイトの <acronym>URL</acronym> (もしわかれば)</entry>
684 <entry>BusinessClickUrl</entry>
685 <entry>string</entry>
686 <entry>ビジネスウェブサイトへのリンク用の <acronym>URL</acronym> (もしわかれば)</entry>
692 <link linkend="zend.service.yahoo.classes">クラス一覧に戻る</link>
696 <sect3 id="zend.service.yahoo.classes.newsresult">
697 <title>Zend_Service_Yahoo_NewsResult</title>
699 News Search の結果は <classname>Zend_Service_Yahoo_NewsResult</classname>
702 <sect4 id="zend.service.yahoo.classes.newsresult.properties">
704 <table id="zend.service.yahoo.classes.newsresult.properties.table-1">
705 <title>Zend_Service_Yahoo_NewsResult のプロパティ</title>
716 <entry>Summary</entry>
717 <entry>string</entry>
721 <entry>NewsSource</entry>
722 <entry>string</entry>
723 <entry>記事を配信した会社</entry>
726 <entry>NewsSourceUrl</entry>
727 <entry>string</entry>
728 <entry>記事を配信した会社の <acronym>URL</acronym></entry>
731 <entry>Language</entry>
732 <entry>string</entry>
733 <entry>記事が記述されている言語</entry>
736 <entry>PublishDate</entry>
737 <entry>string</entry>
738 <entry><acronym>UNIX</acronym> タイムスタンプで表した、記事の配信時刻</entry>
741 <entry>ModificationDate</entry>
742 <entry>string</entry>
743 <entry><acronym>UNIX</acronym> タイムスタンプで表した、記事の最終更新時刻</entry>
746 <entry>Thumbnail</entry>
747 <entry><link linkend="zend.service.yahoo.classes.image">Zend_Service_Yahoo_Image</link></entry>
748 <entry>記事の画像サムネイル (もしあれば)</entry>
754 <link linkend="zend.service.yahoo.classes">クラス一覧に戻る</link>
758 <sect3 id="zend.service.yahoo.classes.inlinkdataresult">
759 <title>Zend_Service_Yahoo_InlinkDataResult</title>
761 Inbound Link Search の結果の各項目は
762 <classname>Zend_Service_Yahoo_InlinkDatabResult</classname> オブジェクトで返されます。
765 <link linkend="zend.service.yahoo.classes">クラス一覧に戻る</link>
768 <sect3 id="zend.service.yahoo.classes.pagedataresult">
769 <title>Zend_Service_Yahoo_PageDataResult</title>
771 Page Data Search の結果の各項目は
772 <classname>Zend_Service_Yahoo_PageDatabResult</classname> オブジェクトで返されます。
775 <link linkend="zend.service.yahoo.classes">クラス一覧に戻る</link>
778 <sect3 id="zend.service.yahoo.classes.image">
779 <title>Zend_Service_Yahoo_Image</title>
781 Yahoo! Image Search あるいは Yahoo! News Search が返すすべての画像は
782 <classname>Zend_Service_Yahoo_Image</classname> オブジェクトで表されます。
784 <sect4 id="zend.service.yahoo.classes.image.properties">
786 <table id="zend.service.yahoo.classes.image.properties.table-1">
787 <title>Zend_Service_Yahoo_Image のプロパティ</title>
799 <entry>string</entry>
800 <entry>画像の <acronym>URL</acronym></entry>
808 <entry>Height</entry>
816 <link linkend="zend.service.yahoo.classes">クラス一覧に戻る</link>