<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/language.variables.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'es',
  ),
  'this' => 
  array (
    0 => 'language.variables.predefined.php',
    1 => 'Variables Predefinidas',
    2 => 'Variables Predefinidas',
  ),
  'up' => 
  array (
    0 => 'language.variables.php',
    1 => 'Variables',
  ),
  'prev' => 
  array (
    0 => 'language.variables.basics.php',
    1 => 'Conceptos b&aacute;sicos',
  ),
  'next' => 
  array (
    0 => 'language.variables.scope.php',
    1 => '&Aacute;mbito de las variables',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'es',
    'path' => 'language/variables.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="language.variables.predefined" class="sect1">
   <h2 class="title">Variables Predefinidas</h2>

   <p class="para">
    PHP proporciona una gran cantidad de
    <a href="reserved.variables.php" class="link">variables predefinidas</a>.
    PHP ofrece un conjunto adicional de arrays predefinidas que contienen
    variables del servidor web (cuando es aplicable), el entorno y entradas del
    usuario. Estos arrays están automáticamente disponibles en cualquier
    entorno. Por esa razón, a veces son conocidas como &quot;superglobales&quot;.
    (No existe mecanismo en PHP para crear superglobales definidas por el
    usuario). Referencia de la
    <a href="language.variables.superglobals.php" class="link">lista de superglobales</a>
    para más detalles.
   </p>

   <blockquote class="note"><p><strong class="note">Nota</strong>: 
    <strong>Variables variables</strong><br />
    <p class="para">
     Las superglobales no pueden ser usadas como <a href="language.variables.variable.php" class="link">variables variables</a>
     en el interior de funciones o métodos de clase.
    </p>
   </p></blockquote>

   <p class="para">
    Si ciertas variables no son definidas en <a href="ini.core.php#ini.variables-order" class="link">variables_order</a>, los arrays de PHP
    predefinidos asociados a estas, estarán vacíos.
   </p>
  </div><?php manual_footer($setup); ?>