<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/book.intl.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'tr',
  ),
  'this' => 
  array (
    0 => 'class.intliterator.php',
    1 => 'IntlIterator',
    2 => 'The IntlIterator class',
  ),
  'up' => 
  array (
    0 => 'book.intl.php',
    1 => 'Intl',
  ),
  'prev' => 
  array (
    0 => 'class.intlexception.php',
    1 => 'IntlException',
  ),
  'next' => 
  array (
    0 => 'intliterator.current.php',
    1 => 'IntlIterator::current',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/intl/intliterator.xml',
  ),
  'history' => 
  array (
  ),
  'extra_header_links' => 
  array (
    'rel' => 'alternate',
    'href' => '/manual/en/feeds/class.intliterator.atom',
    'type' => 'application/atom+xml',
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="class.intliterator" class="reference">

 <h1 class="title">The IntlIterator class</h1>
 

 <div class="partintro"><p class="verinfo">(PHP 5 &gt;= 5.5.0, PHP 7, PHP 8)</p>


  <div class="section" id="intliterator.intro">
   <h2 class="title">Giriş</h2>
   <p class="para">
    This class represents iterator objects throughout the intl extension
    whenever the iterator cannot be identified with any other object provided
    by the extension. The distinct iterator object used internally by the
    <a href="control-structures.foreach.php" class="link"><code class="literal">foreach</code>
    construct</a> can only be obtained (in the relevant part here) from
    objects, so objects of this class serve the purpose of providing the hook
    through which this internal object can be obtained. As a convenience, this
    class also implements the <span class="classname"><a href="class.iterator.php" class="classname">Iterator</a></span> interface,
    allowing the collection of values to be navigated using the methods
    defined in that interface. Both these methods and the internal iterator
    objects provided to <code class="literal">foreach</code> are backed by the same
    state (e.g. the position of the iterator and its current value).
   </p>
   <p class="para">
    Subclasses may provide richer functionality.
   </p>
  </div>


  <div class="section" id="intliterator.synopsis">
   <h2 class="title">Sınıf Sözdizimi</h2>


   <div class="classsynopsis"><div class="classsynopsisinfo">
    
     <span class="modifier">class</span> <strong class="classname"><strong class="classname">IntlIterator</strong></strong>
    

    
     <span class="modifier">implements</span>
      <a href="class.iterator.php" class="interfacename">Iterator</a> {</div>

    <div class="classsynopsisinfo classsynopsisinfo_comment">/* Yöntemler */</div>
    <div class="methodsynopsis dc-description">
   <span class="modifier">public</span> <span class="methodname"><a href="intliterator.current.php" class="methodname">current</a></span>(): <span class="type"><a href="language.types.mixed.php" class="type mixed">mixed</a></span></div>
<div class="methodsynopsis dc-description"><span class="modifier">public</span> <span class="methodname"><a href="intliterator.key.php" class="methodname">key</a></span>(): <span class="type"><a href="language.types.mixed.php" class="type mixed">mixed</a></span></div>
<div class="methodsynopsis dc-description"><span class="modifier">public</span> <span class="methodname"><a href="intliterator.next.php" class="methodname">next</a></span>(): <span class="type"><a href="language.types.void.php" class="type void">void</a></span></div>
<div class="methodsynopsis dc-description"><span class="modifier">public</span> <span class="methodname"><a href="intliterator.rewind.php" class="methodname">rewind</a></span>(): <span class="type"><a href="language.types.void.php" class="type void">void</a></span></div>
<div class="methodsynopsis dc-description"><span class="modifier">public</span> <span class="methodname"><a href="intliterator.valid.php" class="methodname">valid</a></span>(): <span class="type"><a href="language.types.boolean.php" class="type bool">bool</a></span></div>

   }</div>


  </div>

 </div>

 

























<h2>İçindekiler</h2><ul class="chunklist chunklist_reference"><li><a href="intliterator.current.php">IntlIterator::current</a> — Get the current element</li><li><a href="intliterator.key.php">IntlIterator::key</a> — Get the current key</li><li><a href="intliterator.next.php">IntlIterator::next</a> — Move forward to the next element</li><li><a href="intliterator.rewind.php">IntlIterator::rewind</a> — Rewind the iterator to the first element</li><li><a href="intliterator.valid.php">IntlIterator::valid</a> — Check if current position is valid</li></ul>
</div>
<?php manual_footer($setup); ?>