downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

Our source is open

The syntax highlighted source is automatically generated by PHP from the plaintext script. If you're interested in what's behind the several functions we used, you can always take a look at the source of the following files:

Of course, if you want to see the source of this page, we have it available. You can also browse the SVN repository for this website on svn.php.net.

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(); ?>
 
show source | credits | sitemap | contact | advertising | mirror sites