<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/reserved.variables.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'de',
  ),
  'this' => 
  array (
    0 => 'reserved.variables.files.php',
    1 => '$_FILES',
    2 => 'HTTP Dateiupload-Variablen',
  ),
  'up' => 
  array (
    0 => 'reserved.variables.php',
    1 => 'Vordefinierte Variablen',
  ),
  'prev' => 
  array (
    0 => 'reserved.variables.post.php',
    1 => '$_POST',
  ),
  'next' => 
  array (
    0 => 'reserved.variables.request.php',
    1 => '$_REQUEST',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'de',
    'path' => 'language/predefined/variables/files.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="reserved.variables.files" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">$_FILES</h1>
  <p class="verinfo">(PHP 4 &gt;= 4.1.0, PHP 5, PHP 7, PHP 8)</p><p class="refpurpose"><span class="refname">$_FILES</span> &mdash; <span class="dc-title">HTTP Dateiupload-Variablen</span></p>

 </div>

 <div class="refsect1 description" id="refsect1-reserved.variables.files-description">
  <h3 class="title">Beschreibung</h3>
  <p class="para">
   Ein assoziatives <span class="type"><a href="language.types.array.php" class="type Array">Array</a></span> von Elementen, die vom aktuellen Skript
   via HTTP POST-Methode hochgeladen werden.
   Die Struktur dieses Arrays wird im Abschnitt
   <a href="features.file-upload.post-method.php" class="link">Dateiuploads mit POST</a>
   beschrieben.
  </p>
 </div>


 <div class="refsect1 notes" id="refsect1-reserved.variables.files-notes">
  <h3 class="title">Anmerkungen</h3>
  <blockquote class="note"><p><strong class="note">Hinweis</strong>: <p class="para">Dies ist eine &#039;Superglobale&#039;
oder automatisch globale Variable. Dies bedeutet, dass sie innerhalb
des Skripts in jedem Geltungsbereich sichtbar ist. Es ist nicht
nötig, sie mit <strong class="command">global $variable</strong> bekannt zu
machen, um aus Funktionen oder Methoden darauf zuzugreifen.</p>
</p></blockquote>
 </div>


 <div class="refsect1 seealso" id="refsect1-reserved.variables.files-seealso">
  <h3 class="title">Siehe auch</h3>
  <p class="para">
   <ul class="simplelist">
    <li><span class="function"><a href="function.move-uploaded-file.php" class="function" rel="rdfs-seeAlso">move_uploaded_file()</a> - Verschiebt eine hochgeladene Datei an einen neuen Ort</span></li>
    <li><a href="features.file-upload.php" class="link">Behandlung von Dateiuploads</a></li>
   </ul>
  </p>
 </div>


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