<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/langref.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'it',
  ),
  'this' => 
  array (
    0 => 'reserved.variables.php',
    1 => 'Predefined Variables',
    2 => 'Predefined Variables',
  ),
  'up' => 
  array (
    0 => 'langref.php',
    1 => 'Struttura del Linguaggio',
  ),
  'prev' => 
  array (
    0 => 'language.references.spot.php',
    1 => 'Spotting References',
  ),
  'next' => 
  array (
    0 => 'language.variables.superglobals.php',
    1 => 'Superglobals',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'language/predefined/variables.xml',
  ),
  'history' => 
  array (
  ),
  'extra_header_links' => 
  array (
    'rel' => 'alternate',
    'href' => '/manual/en/feeds/reserved.variables.atom',
    'type' => 'application/atom+xml',
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="reserved.variables" class="reference">
 <h1 class="title">Predefined Variables</h1>

 <div class="partintro">

  <p class="para">
   PHP provides predefined variables that represent
   <a href="language.variables.external.php" class="link">external variables</a>,
   built-in environment variables, and other information about the execution
   environment, such as the number and values of the arguments passed to the
   script in the CLI environment.
  </p>

 </div>

 



 



 



 


 






 



 



 



 



 



 



 



 



 



 



 



 



 



 



 



 



 




 



 



 



 




<h2>Indice dei contenuti</h2><ul class="chunklist chunklist_reference"><li><a href="language.variables.superglobals.php">Superglobals</a> — Built-in variables that are always available in all scopes</li><li><a href="reserved.variables.globals.php">$GLOBALS</a> — References all variables available in global scope</li><li><a href="reserved.variables.server.php">$_SERVER</a> — Server and execution environment information</li><li><a href="reserved.variables.get.php">$_GET</a> — Query string variables</li><li><a href="reserved.variables.post.php">$_POST</a> — Form data from HTTP POST requests</li><li><a href="reserved.variables.files.php">$_FILES</a> — HTTP File Upload variables</li><li><a href="reserved.variables.request.php">$_REQUEST</a> — HTTP Request variables</li><li><a href="reserved.variables.session.php">$_SESSION</a> — Session variables</li><li><a href="reserved.variables.environment.php">$_ENV</a> — Environment variables</li><li><a href="reserved.variables.cookies.php">$_COOKIE</a> — HTTP Cookies</li><li><a href="reserved.variables.phperrormsg.php">$php_errormsg</a> — The previous error message</li><li><a href="reserved.variables.httpresponseheader.php">$http_response_header</a> — HTTP response headers</li><li><a href="reserved.variables.argc.php">$argc</a> — Il numero degli argomenti passati allo script</li><li><a href="reserved.variables.argv.php">$argv</a> — Array of arguments passed to script</li></ul>
</div>
<?php manual_footer($setup); ?>