Sophie

Sophie

distrib > Mageia > 4 > x86_64 > by-pkgid > f800694edefe91adea2624f711a41a2d > files > 11353

php-manual-en-5.5.7-1.mga4.noarch.rpm

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
 <head>
  <meta http-equiv="content-type" content="text/html; charset=UTF-8">
  <title>Rewind to the first element</title>

 </head>
 <body><div class="manualnavbar" style="text-align: center;">
 <div class="prev" style="text-align: left; float: left;"><a href="simplexmliterator.next.html">SimpleXMLIterator::next</a></div>
 <div class="next" style="text-align: right; float: right;"><a href="simplexmliterator.valid.html">SimpleXMLIterator::valid</a></div>
 <div class="up"><a href="class.simplexmliterator.html">SimpleXMLIterator</a></div>
 <div class="home"><a href="index.html">PHP Manual</a></div>
</div><hr /><div id="simplexmliterator.rewind" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">SimpleXMLIterator::rewind</h1>
  <p class="verinfo">(PHP 5 &gt;= 5.1.0)</p><p class="refpurpose"><span class="refname">SimpleXMLIterator::rewind</span> &mdash; <span class="dc-title">Rewind to the first element</span></p>

 </div>
 <div class="refsect1 description" id="refsect1-simplexmliterator.rewind-description">
  <h3 class="title">Description</h3>
  <div class="methodsynopsis dc-description">
   <span class="modifier">public</span> <span class="type"><span class="type void">void</span></span> <span class="methodname"><strong>SimpleXMLIterator::rewind</strong></span>
    ( <span class="methodparam">void</span>
   )</div>

  <p class="para rdfs-comment">
   This method rewinds the <a href="class.simplexmliterator.html" class="classname">SimpleXMLIterator</a> to the first element.
  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-simplexmliterator.rewind-parameters">
  <h3 class="title">Parameters</h3>
  <p class="para">This function has no parameters.</p>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-simplexmliterator.rewind-returnvalues">
  <h3 class="title">Return Values</h3>
  <p class="para">
   No value is returned.
  </p>
 </div>


 <div class="refsect1 examples" id="refsect1-simplexmliterator.rewind-examples">
  <h3 class="title">Examples</h3>
  <p class="para">
   <div class="example" id="example-5518">
    <p><strong>Example #1 Rewind to the first element</strong></p>
    <div class="example-contents">
<div class="phpcode"><code><span style="color: #000000">
<span style="color: #0000BB">&lt;?php<br />$xmlIterator&nbsp;</span><span style="color: #007700">=&nbsp;new&nbsp;</span><span style="color: #0000BB">SimpleXMLIterator</span><span style="color: #007700">(</span><span style="color: #DD0000">'&lt;books&gt;&lt;book&gt;PHP&nbsp;Basics&lt;/book&gt;&lt;book&gt;XML&nbsp;Basics&lt;/book&gt;&lt;/books&gt;'</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">$xmlIterator</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">rewind</span><span style="color: #007700">();<br /><br /></span><span style="color: #0000BB">var_dump</span><span style="color: #007700">(</span><span style="color: #0000BB">$xmlIterator</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">current</span><span style="color: #007700">());<br /></span><span style="color: #0000BB">?&gt;</span>
</span>
</code></div>
    </div>

     <div class="example-contents"><p>The above example will output:</p></div>
    <div class="example-contents screen">
<div class="cdata"><pre>
object(SimpleXMLIterator)#2 (1) {
  [0]=&gt;
  string(10) &quot;PHP Basics&quot;
}
</pre></div>
    </div>
   </div>
  </p>
 </div>


</div><hr /><div class="manualnavbar" style="text-align: center;">
 <div class="prev" style="text-align: left; float: left;"><a href="simplexmliterator.next.html">SimpleXMLIterator::next</a></div>
 <div class="next" style="text-align: right; float: right;"><a href="simplexmliterator.valid.html">SimpleXMLIterator::valid</a></div>
 <div class="up"><a href="class.simplexmliterator.html">SimpleXMLIterator</a></div>
 <div class="home"><a href="index.html">PHP Manual</a></div>
</div></body></html>