[MANUAL] English:
[zend.git] / documentation / manual / he / module_specs / Zend_Feed-ConsumingAtomSingle.xml
blob198cc8aa405c08dc99c4971dc9b5444741222b8a
1 <sect1 id="zend.feed.consuming-atom-single-entry">
2     <title>צריכת ערך סנדקציה בודד</title>
4     <para>
5         אלמנטים של סנדקצית אטום בודדת <code>&lt;entry&gt;</code> הם גם תקינים בפני עצמם. בדרך כלל הקישור לערך בודד הוא הקישור לכל הסנדקציה ולאחר מכן <code>/&lt;entryId&gt;</code> שמהווה בעצם מספר רשומה, כמו למשל
6          <code>http://atom.example.com/feed/1</code>.
7     </para>
9     <para>
10         אם הנכם קוראים ערך בודד, עדיין יווצר אובייקט <code>Zend_Feed_Atom</code> חדש, אבל הוא יצור אוטומטית פיד אנונימי כדי להכיל את הערך שנלקח.
11     </para>
13     <example id="zend.feed.consuming-atom-single-entry.example.atom">
14         <title>קריאת ערך סנדקציה בודד</title>
15         <programlisting role="php"><![CDATA[
16 $feed = new Zend_Feed_Atom('http://atom.example.com/feed/1');
17 echo 'The feed has: ' . $feed->count() . ' entry.';
19 $entry = $feed->current();
20 ]]>
21         </programlisting>
22     </example>
24     <para>
25         לחלופין, תוכלו להכווין את האובייקט ישירות לערך הבודד על ידי הזנת קישור ישיר לאותו ערך:
26     </para>
28     <example id="zend.feed.consuming-atom-single-entry.example.entryatom">
29         <title>שימוש באובייקט סנדקציה ישירות לערך סנדקציה בודד</title>
30         <programlisting role="php"><![CDATA[
31 $entry = new Zend_Feed_Entry_Atom('http://atom.example.com/feed/1');
32 echo $entry->title();
33 ]]>
34         </programlisting>
35     </example>
36 </sect1>
37 <!--
38 vim:se ts=4 sw=4 et:
39 -->