<?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 => 'it',
  ),
  'this' => 
  array (
    0 => 'reserved.variables.files.php',
    1 => '$_FILES',
    2 => 'HTTP File Upload variables',
  ),
  'up' => 
  array (
    0 => 'reserved.variables.php',
    1 => 'Predefined Variables',
  ),
  'prev' => 
  array (
    0 => 'reserved.variables.post.php',
    1 => '$_POST',
  ),
  'next' => 
  array (
    0 => 'reserved.variables.request.php',
    1 => '$_REQUEST',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    '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 File Upload variables</span></p>

 </div>
 
 <div class="refsect1 description" id="refsect1-reserved.variables.files-description">
  <h3 class="title">Descrizione</h3>
  <p class="para">
   An associative <span class="type"><a href="language.types.array.php" class="type array">array</a></span> of items uploaded to the current script
   via the HTTP POST method. The structure of this array is outlined in the
   <a href="features.file-upload.post-method.php" class="link">POST method uploads</a>
   section.
  </p>
 </div>

 
 <div class="refsect1 notes" id="refsect1-reserved.variables.files-notes">
  <h3 class="title">Note</h3>
  <blockquote class="note"><p><strong class="note">Nota</strong>: <p class="para">Questa è una variabile &#039;superglobale&#039;, o
automaticamente global. Ciò semplicemente significa che è visibile in 
tutti gli ambiti in uno script. Non è necessario dichiararla come
<strong class="command">global $variable;</strong> per accedervi da funzioni o metodi.
</p></p></blockquote>
 </div>


 <div class="refsect1 seealso" id="refsect1-reserved.variables.files-seealso">
  <h3 class="title">Vedere anche:</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> - Sposta un file caricato in una nuova posizione</span></li>
    <li><a href="features.file-upload.php" class="link">Handling File Uploads</a></li>
   </ul>
  </p>
 </div>


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