You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

277 lines
11 KiB

18 years ago
27 years ago
27 years ago
18 years ago
18 years ago
27 years ago
18 years ago
27 years ago
18 years ago
27 years ago
18 years ago
27 years ago
18 years ago
27 years ago
27 years ago
18 years ago
27 years ago
18 years ago
27 years ago
18 years ago
18 years ago
18 years ago
18 years ago
18 years ago
18 years ago
27 years ago
18 years ago
18 years ago
18 years ago
18 years ago
18 years ago
27 years ago
18 years ago
27 years ago
18 years ago
27 years ago
18 years ago
27 years ago
18 years ago
18 years ago
18 years ago
27 years ago
18 years ago
27 years ago
18 years ago
27 years ago
18 years ago
18 years ago
18 years ago
18 years ago
18 years ago
27 years ago
18 years ago
27 years ago
18 years ago
27 years ago
18 years ago
27 years ago
18 years ago
27 years ago
18 years ago
27 years ago
18 years ago
17 years ago
27 years ago
  1. ========================
  2. PHP Coding Standards
  3. ========================
  4. This file lists several standards that any programmer, adding or changing
  5. code in PHP, should follow. Since this file was added at a very late
  6. stage of the development of PHP v3.0, the code base does not (yet) fully
  7. follow it, but it's going in that general direction. Since we are now
  8. well into the version 4 releases, many sections have been recoded to use
  9. these rules.
  10. Code Implementation
  11. -------------------
  12. 0. Document your code in source files and the manual. [tm]
  13. 1. Functions that are given pointers to resources should not free them
  14. For instance, ``function int mail(char *to, char *from)`` should NOT free
  15. to and/or from.
  16. Exceptions:
  17. - The function's designated behavior is freeing that resource. E.g. efree()
  18. - The function is given a boolean argument, that controls whether or not
  19. the function may free its arguments (if true - the function must free its
  20. arguments, if false - it must not)
  21. - Low-level parser routines, that are tightly integrated with the token
  22. cache and the bison code for minimum memory copying overhead.
  23. 2. Functions that are tightly integrated with other functions within the
  24. same module, and rely on each other non-trivial behavior, should be
  25. documented as such and declared 'static'. They should be avoided if
  26. possible.
  27. 3. Use definitions and macros whenever possible, so that constants have
  28. meaningful names and can be easily manipulated. The only exceptions
  29. to this rule are 0 and 1, when used as false and true (respectively).
  30. Any other use of a numeric constant to specify different behavior
  31. or actions should be done through a #define.
  32. 4. When writing functions that deal with strings, be sure to remember
  33. that PHP holds the length property of each string, and that it
  34. shouldn't be calculated with strlen(). Write your functions in a such
  35. a way so that they'll take advantage of the length property, both
  36. for efficiency and in order for them to be binary-safe.
  37. Functions that change strings and obtain their new lengths while
  38. doing so, should return that new length, so it doesn't have to be
  39. recalculated with strlen() (e.g. php_addslashes())
  40. 5. NEVER USE strncat(). If you're absolutely sure you know what you're doing,
  41. check its man page again, and only then, consider using it, and even then,
  42. try avoiding it.
  43. 6. Use ``PHP_*`` macros in the PHP source, and ``ZEND_*`` macros in the Zend
  44. part of the source. Although the ``PHP_*`` macro's are mostly aliased to the
  45. ``ZEND_*`` macros it gives a better understanding on what kind of macro
  46. you're calling.
  47. 7. When commenting out code using a #if statement, do NOT use 0 only. Instead
  48. use "<svn username here>_0". For example, #if FOO_0, where FOO is your
  49. svn user foo. This allows easier tracking of why code was commented out,
  50. especially in bundled libraries.
  51. 8. Do not define functions that are not available. For instance, if a
  52. library is missing a function, do not define the PHP version of the
  53. function, and do not raise a run-time error about the function not
  54. existing. End users should use function_exists() to test for the
  55. existence of a function
  56. 9. Prefer emalloc(), efree(), estrdup(), etc. to their standard C library
  57. counterparts. These functions implement an internal "safety-net"
  58. mechanism that ensures the deallocation of any unfreed memory at the
  59. end of a request. They also provide useful allocation and overflow
  60. information while running in debug mode.
  61. In almost all cases, memory returned to the engine must be allocated
  62. using emalloc().
  63. The use of malloc() should be limited to cases where a third-party
  64. library may need to control or free the memory, or when the memory in
  65. question needs to survive between multiple requests.
  66. Naming Conventions
  67. ------------------
  68. 1. Function names for user-level functions should be enclosed with in
  69. the PHP_FUNCTION() macro. They should be in lowercase, with words
  70. underscore delimited, with care taken to minimize the letter count.
  71. Abbreviations should not be used when they greatly decrease the
  72. readability of the function name itself::
  73. Good:
  74. 'mcrypt_enc_self_test'
  75. 'mysql_list_fields'
  76. Ok:
  77. 'mcrypt_module_get_algo_supported_key_sizes'
  78. (could be 'mcrypt_mod_get_algo_sup_key_sizes'?)
  79. 'get_html_translation_table'
  80. (could be 'html_get_trans_table'?)
  81. Bad:
  82. 'hw_GetObjectByQueryCollObj'
  83. 'pg_setclientencoding'
  84. 'jf_n_s_i'
  85. 2. If they are part of a "parent set" of functions, that parent should
  86. be included in the user function name, and should be clearly related
  87. to the parent program or function family. This should be in the form
  88. of ``parent_*``::
  89. A family of 'foo' functions, for example:
  90. Good:
  91. 'foo_select_bar'
  92. 'foo_insert_baz'
  93. 'foo_delete_baz'
  94. Bad:
  95. 'fooselect_bar'
  96. 'fooinsertbaz'
  97. 'delete_foo_baz'
  98. 3. Function names used by user functions should be prefixed
  99. with ``_php_``, and followed by a word or an underscore-delimited list of
  100. words, in lowercase letters, that describes the function. If applicable,
  101. they should be declared 'static'.
  102. 4. Variable names must be meaningful. One letter variable names must be
  103. avoided, except for places where the variable has no real meaning or
  104. a trivial meaning (e.g. for (i=0; i<100; i++) ...).
  105. 5. Variable names should be in lowercase. Use underscores to separate
  106. between words.
  107. 6. Method names follow the 'studlyCaps' (also referred to as 'bumpy case'
  108. or 'camel caps') naming convention, with care taken to minimize the
  109. letter count. The initial letter of the name is lowercase, and each
  110. letter that starts a new 'word' is capitalized::
  111. Good:
  112. 'connect()'
  113. 'getData()'
  114. 'buildSomeWidget()'
  115. Bad:
  116. 'get_Data()'
  117. 'buildsomewidget'
  118. 'getI()'
  119. 7. Classes should be given descriptive names. Avoid using abbreviations where
  120. possible. Each word in the class name should start with a capital letter,
  121. without underscore delimiters (CampelCaps starting with a capital letter).
  122. The class name should be prefixed with the name of the 'parent set' (e.g.
  123. the name of the extension)::
  124. Good:
  125. 'Curl'
  126. 'FooBar'
  127. Bad:
  128. 'foobar'
  129. 'foo_bar'
  130. Syntax and indentation
  131. ----------------------
  132. 1. Never use C++ style comments (i.e. // comment). Always use C-style
  133. comments instead. PHP is written in C, and is aimed at compiling
  134. under any ANSI-C compliant compiler. Even though many compilers
  135. accept C++-style comments in C code, you have to ensure that your
  136. code would compile with other compilers as well.
  137. The only exception to this rule is code that is Win32-specific,
  138. because the Win32 port is MS-Visual C++ specific, and this compiler
  139. is known to accept C++-style comments in C code.
  140. 2. Use K&R-style. Of course, we can't and don't want to
  141. force anybody to use a style he or she is not used to, but,
  142. at the very least, when you write code that goes into the core
  143. of PHP or one of its standard modules, please maintain the K&R
  144. style. This applies to just about everything, starting with
  145. indentation and comment styles and up to function declaration
  146. syntax. Also see Indentstyle_.
  147. .. _Indentstyle: http://www.catb.org/~esr/jargon/html/I/indent-style.html
  148. 3. Be generous with whitespace and braces. Keep one empty line between the
  149. variable declaration section and the statements in a block, as well as
  150. between logical statement groups in a block. Maintain at least one empty
  151. line between two functions, preferably two. Always prefer::
  152. if (foo) {
  153. bar;
  154. }
  155. to:
  156. if(foo)bar;
  157. 4. When indenting, use the tab character. A tab is expected to represent
  158. four spaces. It is important to maintain consistency in indenture so
  159. that definitions, comments, and control structures line up correctly.
  160. 5. Preprocessor statements (#if and such) MUST start at column one. To
  161. indent preprocessor directives you should put the # at the beginning
  162. of a line, followed by any number of whitespace.
  163. Testing
  164. -------
  165. 1. Extensions should be well tested using *.phpt tests. Read about that
  166. in README.TESTING.
  167. Documentation and Folding Hooks
  168. -------------------------------
  169. In order to make sure that the online documentation stays in line with
  170. the code, each user-level function should have its user-level function
  171. prototype before it along with a brief one-line description of what the
  172. function does. It would look like this::
  173. /* {{{ proto int abs(int number)
  174. Returns the absolute value of the number */
  175. PHP_FUNCTION(abs)
  176. {
  177. ...
  178. }
  179. /* }}} */
  180. The {{{ symbols are the default folding symbols for the folding mode in
  181. Emacs and vim (set fdm=marker). Folding is very useful when dealing with
  182. large files because you can scroll through the file quickly and just unfold
  183. the function you wish to work on. The }}} at the end of each function marks
  184. the end of the fold, and should be on a separate line.
  185. The "proto" keyword there is just a helper for the doc/genfuncsummary script
  186. which generates a full function summary. Having this keyword in front of the
  187. function prototypes allows us to put folds elsewhere in the code without
  188. messing up the function summary.
  189. Optional arguments are written like this::
  190. /* {{{ proto object imap_header(int stream_id, int msg_no [, int from_length [, int subject_length [, string default_host]]])
  191. Returns a header object with the defined parameters */
  192. And yes, please keep the prototype on a single line, even if that line
  193. is massive.
  194. New and Experimental Functions
  195. -----------------------------------
  196. To reduce the problems normally associated with the first public
  197. implementation of a new set of functions, it has been suggested
  198. that the first implementation include a file labeled 'EXPERIMENTAL'
  199. in the function directory, and that the functions follow the
  200. standard prefixing conventions during their initial implementation.
  201. The file labelled 'EXPERIMENTAL' should include the following
  202. information::
  203. Any authoring information (known bugs, future directions of the module).
  204. Ongoing status notes which may not be appropriate for SVN comments.
  205. Aliases & Legacy Documentation
  206. -----------------------------------
  207. You may also have some deprecated aliases with close to duplicate
  208. names, for example, somedb_select_result and somedb_selectresult. For
  209. documentation purposes, these will only be documented by the most
  210. current name, with the aliases listed in the documentation for
  211. the parent function. For ease of reference, user-functions with
  212. completely different names, that alias to the same function (such as
  213. highlight_file and show_source), will be separately documented. The
  214. proto should still be included, describing which function is aliased.
  215. Backwards compatible functions and names should be maintained as long
  216. as the code can be reasonably be kept as part of the codebase. See
  217. /phpdoc/README for more information on documentation.