Source of: /manual/en/userlandnaming.php
<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = 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',
),
'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',
),
);
$setup["toc"] = $TOC;
$setup["parents"] = $PARENTS;
manual_setup($setup);
manual_header();
?>
<div>
<h1>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(); ?>