<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/wrappers.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'de',
  ),
  'this' => 
  array (
    0 => 'wrappers.glob.php',
    1 => 'glob://',
    2 => 'Suche nach Pfadnamen, die einem Muster entsprechen',
  ),
  'up' => 
  array (
    0 => 'wrappers.php',
    1 => 'Unterst&uuml;tzte Protokolle und Wrapper',
  ),
  'prev' => 
  array (
    0 => 'wrappers.data.php',
    1 => 'data://',
  ),
  'next' => 
  array (
    0 => 'wrappers.phar.php',
    1 => 'phar://',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'de',
    'path' => 'language/wrappers/glob.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="wrappers.glob" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">glob://</h1>
  <p class="refpurpose"><span class="refname">glob://</span> &mdash; <span class="dc-title">Suche nach Pfadnamen, die einem Muster entsprechen</span></p>

 </div>

 <div class="refsect1 description" id="refsect1-wrappers.glob-description">
  <h3 class="title">Beschreibung</h3>
  <p class="simpara">
   
   Der Stream-Wrapper <var class="filename">glob:</var>.
  </p>
 </div>


 <div class="refsect1 usage" id="refsect1-wrappers.glob-usage"> 
  <h3 class="title">Verwendung</h3>
  <ul class="itemizedlist">
   <li class="listitem"><span class="simpara"><var class="filename">glob://</var></span></li>
  </ul>
 </div>
 

 <div class="refsect1 options" id="refsect1-wrappers.glob-options">
  <h3 class="title">Optionen</h3>
  <p class="para">
   <table class="doctable table">
    <caption><strong>Zusammenfassung des Wrappers</strong></caption>
    
     <thead>
      <tr>
       <th>Eigenschaft</th>
       <th>wird unterstützt</th>
      </tr>

     </thead>

     <tbody class="tbody">
      <tr>
       <td>Eingeschränkt durch <a href="filesystem.configuration.php#ini.allow-url-fopen" class="link">allow_url_fopen</a></td>
       <td>Nein</td>
      </tr>

      <tr>
       <td>Eingeschränkt durch <a href="filesystem.configuration.php#ini.allow-url-include" class="link">allow_url_include</a></td>
       <td>Nein</td>
      </tr>

      <tr>
       <td>Erlaubt Lesen</td>
       <td>Nein</td>
      </tr>

      <tr>
       <td>Erlaubt Schreiben</td>
       <td>Nein</td>
      </tr>

      <tr>
       <td>Erlaubt Anfügen</td>
       <td>Nein</td>
      </tr>

      <tr>
       <td>Erlaubt gleichzeitiges Lesen und Schreiben</td>
       <td>Nein</td>
      </tr>

      <tr>
       <td>Unterstützt <span class="function"><a href="function.stat.php" class="function">stat()</a></span></td>
       <td>Nein</td>
      </tr>

      <tr>
       <td>Unterstützt <span class="function"><a href="function.unlink.php" class="function">unlink()</a></span></td>
       <td>Nein</td>
      </tr>

      <tr>
       <td>Unterstützt <span class="function"><a href="function.rename.php" class="function">rename()</a></span></td>
       <td>Nein</td>
      </tr>

      <tr>
       <td>Unterstützt <span class="function"><a href="function.mkdir.php" class="function">mkdir()</a></span></td>
       <td>Nein</td>
      </tr>

      <tr>
       <td>Unterstützt <span class="function"><a href="function.rmdir.php" class="function">rmdir()</a></span></td>
       <td>Nein</td>
      </tr>

     </tbody>
    
   </table>

  </p>
 </div>
 

 <div class="refsect1 examples" id="refsect1-wrappers.glob-examples">
  <h3 class="title">Beispiele</h3>
  <div class="example" id="example-1">
   <p><strong>Beispiel #1 Grundlegende Verwendung</strong></p>
   <div class="example-contents">
<div class="phpcode"><code><span style="color: #000000"><span style="color: #0000BB">&lt;?php<br /></span><span style="color: #FF8000">// Durchläuft alle *.php-Dateien im Verzeichnis ext/spl/examples/<br />// und gibt den Dateinamen und die Größe der Dateien aus<br /></span><span style="color: #0000BB">$it </span><span style="color: #007700">= new </span><span style="color: #0000BB">DirectoryIterator</span><span style="color: #007700">(</span><span style="color: #DD0000">"glob://ext/spl/examples/*.php"</span><span style="color: #007700">);<br />foreach(</span><span style="color: #0000BB">$it </span><span style="color: #007700">as </span><span style="color: #0000BB">$f</span><span style="color: #007700">) {<br />    </span><span style="color: #0000BB">printf</span><span style="color: #007700">(</span><span style="color: #DD0000">"%s: %.1FK\n"</span><span style="color: #007700">, </span><span style="color: #0000BB">$f</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">getFilename</span><span style="color: #007700">(), </span><span style="color: #0000BB">$f</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">getSize</span><span style="color: #007700">()/</span><span style="color: #0000BB">1024</span><span style="color: #007700">);<br />}<br /></span><span style="color: #0000BB">?&gt;</span></span></code></div>
   </div>

   <div class="example-contents screen">
<div class="examplescode"><pre class="examplescode">tree.php: 1.0K
findregex.php: 0.6K
findfile.php: 0.7K
dba_dump.php: 0.9K
nocvsdir.php: 1.1K
phar_from_dir.php: 1.0K
ini_groups.php: 0.9K
directorytree.php: 0.9K
dba_array.php: 1.1K
class_tree.php: 1.8K</pre>
</div>
   </div>
  </div>
 </div>


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