<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/class.globiterator.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'tr',
  ),
  'this' => 
  array (
    0 => 'globiterator.construct.php',
    1 => 'GlobIterator::__construct',
    2 => 'Construct a directory using glob',
  ),
  'up' => 
  array (
    0 => 'class.globiterator.php',
    1 => 'GlobIterator',
  ),
  'prev' => 
  array (
    0 => 'class.globiterator.php',
    1 => 'GlobIterator',
  ),
  'next' => 
  array (
    0 => 'globiterator.count.php',
    1 => 'GlobIterator::count',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/spl/globiterator/construct.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="globiterator.construct" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">GlobIterator::__construct</h1>
  <p class="verinfo">(PHP 5 &gt;= 5.3.0, PHP 7, PHP 8)</p><p class="refpurpose"><span class="refname">GlobIterator::__construct</span> &mdash; <span class="dc-title">Construct a directory using glob</span></p>

 </div>

 <div class="refsect1 description" id="refsect1-globiterator.construct-description">
  <h3 class="title">Açıklama</h3>
  <div class="constructorsynopsis dc-description">
   <span class="modifier">public</span> <span class="methodname"><strong>GlobIterator::__construct</strong></span>(<span class="methodparam"><span class="type"><a href="language.types.string.php" class="type string">string</a></span> <code class="parameter">$pattern</code></span>, <span class="methodparam"><span class="type"><a href="language.types.integer.php" class="type int">int</a></span> <code class="parameter">$flags</code><span class="initializer"> = FilesystemIterator::KEY_AS_PATHNAME | FilesystemIterator::CURRENT_AS_FILEINFO</span></span>)</div>

  <p class="para rdfs-comment">
   Constructs a new directory iterator from a glob expression.
  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-globiterator.construct-parameters">
  <h3 class="title">Bağımsız Değişkenler</h3>
  <p class="para">
   <dl>
    
     <dt><code class="parameter">pattern</code></dt>
     <dd>
      <p class="para">
       A <span class="function"><a href="function.glob.php" class="function">glob()</a></span> pattern.
      </p>
     </dd>
    
    
     <dt><code class="parameter">flags</code></dt>
     <dd>
      <p class="para">
       Option flags, the flags may be a bitmask of the 
       <span class="classname"><a href="class.filesystemiterator.php" class="classname">FilesystemIterator</a></span> constants.
      </p>
     </dd>
    
   </dl>
  </p>
 </div>


 <div class="refsect1 errors" id="refsect1-globiterator.construct-errors">
  <h3 class="title">Hatalar/İstisnalar</h3>
  <p class="para">
   Throws an <span class="classname"><a href="class.unexpectedvalueexception.php" class="classname">UnexpectedValueException</a></span>
   if the <code class="parameter">directory</code> does not exist.
  </p>
  <p class="para">
   Throws a <span class="classname"><a href="class.valueerror.php" class="classname">ValueError</a></span>
   if the <code class="parameter">directory</code> is an empty string.
  </p>
 </div>


 <div class="refsect1 changelog" id="refsect1-globiterator.construct-changelog">
  <h3 class="title">Sürüm Bilgisi</h3>
  <p class="para">
   <table class="doctable informaltable">
    
     <thead>
      <tr>
       <th>Sürüm: </th>
       <th>Açıklama</th>
      </tr>

     </thead>

     <tbody class="tbody">
      <tr>
       <td>8.0.0</td>
       <td>
        Now throws a <span class="classname"><a href="class.valueerror.php" class="classname">ValueError</a></span> if
        <code class="parameter">directory</code> is an empty string;
        previously it threw a <span class="classname"><a href="class.runtimeexception.php" class="classname">RuntimeException</a></span>.
       </td>
      </tr>

     </tbody>
    
   </table>

  </p>
 </div>


 <div class="refsect1 examples" id="refsect1-globiterator.construct-examples">
  <h3 class="title">Örnekler</h3>
  <p class="para">
   <div class="example" id="example-1">
    <p><strong>Örnek 1 <span class="classname"><a href="class.globiterator.php" class="classname">GlobIterator</a></span> example</strong></p>
    <div class="example-contents">
<div class="phpcode"><code><span style="color: #000000"><span style="color: #0000BB">&lt;?php<br />$iterator </span><span style="color: #007700">= new </span><span style="color: #0000BB">GlobIterator</span><span style="color: #007700">(</span><span style="color: #DD0000">'*.dll'</span><span style="color: #007700">, </span><span style="color: #0000BB">FilesystemIterator</span><span style="color: #007700">::</span><span style="color: #0000BB">KEY_AS_FILENAME</span><span style="color: #007700">);<br /><br />if (!</span><span style="color: #0000BB">$iterator</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">count</span><span style="color: #007700">()) {<br />    echo </span><span style="color: #DD0000">'No matches'</span><span style="color: #007700">;<br />} else {<br />    </span><span style="color: #0000BB">$n </span><span style="color: #007700">= </span><span style="color: #0000BB">0</span><span style="color: #007700">;<br /><br />    </span><span style="color: #0000BB">printf</span><span style="color: #007700">(</span><span style="color: #DD0000">"Matched %d item(s)\r\n"</span><span style="color: #007700">, </span><span style="color: #0000BB">$iterator</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">count</span><span style="color: #007700">());<br /><br />    foreach (</span><span style="color: #0000BB">$iterator </span><span style="color: #007700">as </span><span style="color: #0000BB">$item</span><span style="color: #007700">) {<br />        </span><span style="color: #0000BB">printf</span><span style="color: #007700">(</span><span style="color: #DD0000">"[%d] %s\r\n"</span><span style="color: #007700">, ++</span><span style="color: #0000BB">$n</span><span style="color: #007700">, </span><span style="color: #0000BB">$iterator</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">key</span><span style="color: #007700">());<br />    }<br />}<br /></span><span style="color: #0000BB">?&gt;</span></span></code></div>
    </div>

    <div class="example-contents"><p>
Yukarıdaki örnek şuna benzer bir çıktı üretir:</p></div>
    <div class="example-contents screen">
<div class="examplescode"><pre class="examplescode">Matched 2 item(s)
[1] php5ts.dll
[2] php_gd2.dll</pre>
</div>
    </div>
   </div>
  </p>
 </div>


 <div class="refsect1 seealso" id="refsect1-globiterator.construct-seealso">
  <h3 class="title">Ayrıca Bakınız</h3>
  <p class="para">
   <ul class="simplelist">
    <li><span class="methodname"><a href="directoryiterator.construct.php" class="methodname" rel="rdfs-seeAlso">DirectoryIterator::__construct()</a> - Constructs a new directory iterator from a path</span></li>
    <li><span class="methodname"><a href="globiterator.count.php" class="methodname" rel="rdfs-seeAlso">GlobIterator::count()</a> - Get the number of directories and files</span></li>
    <li><span class="function"><a href="function.glob.php" class="function" rel="rdfs-seeAlso">glob()</a> - Bir kalıpla eşleşen dosya yollarını bulur</span></li>
   </ul>
  </p>
 </div>


</div><?php manual_footer($setup); ?>