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

contributors($setup);

?>
<div id="directoryiterator.construct" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">DirectoryIterator::__construct</h1>
  <p class="verinfo">(PHP 5, PHP 7, PHP 8)</p><p class="refpurpose"><span class="refname">DirectoryIterator::__construct</span> &mdash; <span class="dc-title">Constructs a new directory iterator from a path</span></p>

 </div>

 <div class="refsect1 description" id="refsect1-directoryiterator.construct-description">
  <h3 class="title">Descrizione</h3>
  <div class="constructorsynopsis dc-description">
   <span class="modifier">public</span> <span class="methodname"><strong>DirectoryIterator::__construct</strong></span>(<span class="methodparam"><span class="type"><a href="language.types.string.php" class="type string">string</a></span> <code class="parameter">$directory</code></span>)</div>


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


 <div class="refsect1 parameters" id="refsect1-directoryiterator.construct-parameters">
  <h3 class="title">Elenco dei parametri</h3>
  <p class="para">
   <dl>
    
     <dt><code class="parameter">directory</code></dt>
     <dd>
      <p class="para">
       The path of the directory to traverse.
      </p>
     </dd>
    
   </dl>
  </p>
 </div>


 <div class="refsect1 errors" id="refsect1-directoryiterator.construct-errors">
  <h3 class="title">Errori/Eccezioni</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-directoryiterator.construct-changelog">
  <h3 class="title">Log delle modifiche</h3>
  <p class="para">
   <table class="doctable informaltable">
    
     <thead>
      <tr>
       <th>Versione</th>
       <th>Descrizione</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-directoryiterator.construct-examples">
  <h3 class="title">Esempi</h3>
  <p class="para">
   <div class="example" id="example-1">
    <p><strong>Example #1 A <span class="methodname"><strong>DirectoryIterator::__construct()</strong></span> example</strong></p>
     <div class="example-contents"><p>
      This example will list the contents of the directory containing the script.
     </p></div>
     <div class="example-contents">
<div class="phpcode"><code><span style="color: #000000"><span style="color: #0000BB">&lt;?php<br />$dir </span><span style="color: #007700">= new </span><span style="color: #0000BB">DirectoryIterator</span><span style="color: #007700">(</span><span style="color: #0000BB">dirname</span><span style="color: #007700">(</span><span style="color: #0000BB">__FILE__</span><span style="color: #007700">));<br />foreach (</span><span style="color: #0000BB">$dir </span><span style="color: #007700">as </span><span style="color: #0000BB">$fileinfo</span><span style="color: #007700">) {<br />    if (!</span><span style="color: #0000BB">$fileinfo</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">isDot</span><span style="color: #007700">()) {<br />        </span><span style="color: #0000BB">var_dump</span><span style="color: #007700">(</span><span style="color: #0000BB">$fileinfo</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">getFilename</span><span style="color: #007700">());<br />    }<br />}<br /></span><span style="color: #0000BB">?&gt;</span></span></code></div>
    </div>

   </div>
  </p>
 </div>

 
 <div class="refsect1 seealso" id="refsect1-directoryiterator.construct-seealso">
  <h3 class="title">Vedere anche:</h3>
  <p class="para">
   <ul class="simplelist">
    <li><span class="classname"><a href="class.splfileinfo.php" class="classname">SplFileInfo</a></span></li>
    <li><span class="classname"><a href="class.iterator.php" class="classname">Iterator</a></span></li>
   </ul>
  </p>
 </div>


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