<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/appendices.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'en',
  ),
  'this' => 
  array (
    0 => 'userlandnaming.php',
    1 => 'Userland Naming Guide',
    2 => 'Userland Naming Guide',
  ),
  'up' => 
  array (
    0 => 'appendices.php',
    1 => 'Appendices',
  ),
  'prev' => 
  array (
    0 => 'tokens.php',
    1 => 'List of Parser Tokens',
  ),
  'next' => 
  array (
    0 => 'userlandnaming.globalnamespace.php',
    1 => 'Global Namespace',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'appendices/userlandnaming.xml',
  ),
  'history' => 
  array (
  ),
  'extra_header_links' => 
  array (
    'rel' => 'alternate',
    'href' => '/manual/en/feeds/userlandnaming.atom',
    'type' => 'application/atom+xml',
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="userlandnaming" class="appendix">
 <h1 class="title">Userland Naming Guide</h1>
<h2>Table of Contents</h2><ul class="chunklist chunklist_appendix"><li><a href="userlandnaming.globalnamespace.php">Global Namespace</a></li><li><a href="userlandnaming.rules.php">Rules</a></li><li><a href="userlandnaming.tips.php">Tips</a></li></ul>

 <p class="para">
  The following is a guide for how to best choose names for identifiers
  in userland PHP code. When choosing names for any code that creates symbols
  in the global namespace, it is important to take into account the following
  guidelines to prevent future versions of PHP from clashing with your
  symbols.
 </p>

 

 

 

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