<?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.request.php',
    1 => '$_REQUEST',
    2 => 'HTTP Request variables',
  ),
  'up' => 
  array (
    0 => 'reserved.variables.php',
    1 => 'Predefined Variables',
  ),
  'prev' => 
  array (
    0 => 'reserved.variables.files.php',
    1 => '$_FILES',
  ),
  'next' => 
  array (
    0 => 'reserved.variables.session.php',
    1 => '$_SESSION',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'language/predefined/variables/request.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

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

 </div>

 <div class="refsect1 description" id="refsect1-reserved.variables.request-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> that by default contains the contents of
   <var class="varname"><a href="reserved.variables.get.php" class="classname">$_GET</a></var>,
   <var class="varname"><a href="reserved.variables.post.php" class="classname">$_POST</a></var> e
   <var class="varname"><a href="reserved.variables.cookies.php" class="classname">$_COOKIE</a></var>.
  </p>
 </div>


 <div class="refsect1 notes" id="refsect1-reserved.variables.request-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>
  <blockquote class="note"><p><strong class="note">Nota</strong>: 
   <p class="para">
    When running on the <a href="features.commandline.php" class="link">command line
    </a>, this will <em>not</em> include the 
    <a href="reserved.variables.argv.php" class="link">argv</a> and 
    <a href="reserved.variables.argc.php" class="link">argc</a> entries; these are 
    present in the <var class="varname"><a href="reserved.variables.server.php" class="classname">$_SERVER</a></var>
    <span class="type"><a href="language.types.array.php" class="type array">array</a></span>.
   </p>
  </p></blockquote>
  <blockquote class="note"><p><strong class="note">Nota</strong>: 
   <p class="para">
    The variables in <var class="varname">$_REQUEST</var> are provided to the
    script via the GET, POST, and COOKIE input mechanisms and
    therefore could be modified by the remote user and cannot be
    trusted. The presence and order of variables listed in this array
    is defined according to the PHP
    <a href="ini.core.php#ini.request-order" class="link">request_order</a>, and
    <a href="ini.core.php#ini.variables-order" class="link">variables_order</a>
    configuration directives.
   </p>
  </p></blockquote>
 </div>


 <div class="refsect1 seealso" id="refsect1-reserved.variables.request-seealso">
  <h3 class="title">Vedere anche:</h3>
  <ul class="simplelist">
   <li><a href="language.variables.external.php" class="link">Handling external variables</a></li>
   <li><a href="book.filter.php" class="link">The filter extension</a></li>
  </ul>
 </div>

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