<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/language.references.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'en',
  ),
  'this' => 
  array (
    0 => 'language.references.whatare.php',
    1 => 'What References Are',
    2 => 'What References Are',
  ),
  'up' => 
  array (
    0 => 'language.references.php',
    1 => 'References Explained',
  ),
  'prev' => 
  array (
    0 => 'language.references.php',
    1 => 'References Explained',
  ),
  'next' => 
  array (
    0 => 'language.references.whatdo.php',
    1 => 'What References Do',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'language/references.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="language.references.whatare" class="sect1">
   <h2 class="title">What References Are</h2>
   <p class="simpara">
    References in PHP are a means to access the same variable content
    by different names. They are not like C pointers; for instance,
    you cannot perform pointer arithmetic using them, they are not
    actual memory addresses, and so on. See
    <a href="language.references.arent.php" class="xref">What References Are Not</a> for more
    information. Instead, they are
    <a href="features.gc.refcounting-basics.php" class="link">symbol table</a>
    aliases. Note that in PHP, variable name and variable content are different, so the same
    content can have different names. The closest analogy is with
    Unix filenames and files - variable names are directory entries,
    while variable content is the file itself. References can be
    likened to hardlinking in Unix filesystem.
   </p>
  </div><?php manual_footer($setup); ?>