The following is a guide for how to best choose names for identifiers in PHP userland code. When choosing names for any code that creates symbols in the global namespace it is important to take into account the following guide lines to prevent future version of PHP to clash with userland code.
Here is an overview of code constructs that go into the global namespace:
functions
classes
interfaces
constants (not class constants)
variables defined outside of functions/methods
| Précédent | Sommaire | Suivant |
| Liste des tokens de l'analyseur | Niveau supérieur | Rules |