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

28 years ago
28 years ago
28 years ago
28 years ago
28 years ago
28 years ago
28 years ago
28 years ago
28 years ago
28 years ago
28 years ago
28 years ago
28 years ago
28 years ago
23 years ago
28 years ago
28 years ago
23 years ago
21 years ago
28 years ago
28 years ago
28 years ago
28 years ago
28 years ago
  1. PHP Coding Standards
  2. ====================
  3. This file lists several standards that any programmer, adding or changing
  4. code in PHP, should follow. Since this file was added at a very late
  5. stage of the development of PHP v3.0, the code base does not (yet) fully
  6. follow it, but it's going in that general direction. Since we are now
  7. well into the version 4 releases, many sections have been recoded to use
  8. these rules.
  9. Code Implementation
  10. -------------------
  11. [0] Document your code in source files and the manual. [tm]
  12. [1] Functions that are given pointers to resources should not free them
  13. For instance, function int mail(char *to, char *from) should NOT free
  14. to and/or from.
  15. Exceptions:
  16. - The function's designated behavior is freeing that resource. E.g. efree()
  17. - The function is given a boolean argument, that controls whether or not
  18. the function may free its arguments (if true - the function must free its
  19. arguments, if false - it must not)
  20. - Low-level parser routines, that are tightly integrated with the token
  21. cache and the bison code for minimum memory copying overhead.
  22. [2] Functions that are tightly integrated with other functions within the
  23. same module, and rely on each other non-trivial behavior, should be
  24. documented as such and declared 'static'. They should be avoided if
  25. possible.
  26. [3] Use definitions and macros whenever possible, so that constants have
  27. meaningful names and can be easily manipulated. The only exceptions
  28. to this rule are 0 and 1, when used as false and true (respectively).
  29. Any other use of a numeric constant to specify different behavior
  30. or actions should be done through a #define.
  31. [4] When writing functions that deal with strings, be sure to remember
  32. that PHP holds the length property of each string, and that it
  33. shouldn't be calculated with strlen(). Write your functions in a such
  34. a way so that they'll take advantage of the length property, both
  35. for efficiency and in order for them to be binary-safe.
  36. Functions that change strings and obtain their new lengths while
  37. doing so, should return that new length, so it doesn't have to be
  38. recalculated with strlen() (e.g. php_addslashes())
  39. [5] NEVER USE strncat(). If you're absolutely sure you know what you're doing,
  40. check its man page again, and only then, consider using it, and even then,
  41. try avoiding it.
  42. [6] Use PHP_* macros in the PHP source, and ZEND_* macros in the Zend
  43. part of the source. Although the PHP_* macro's are mostly aliased to the
  44. ZEND_* macros it gives a better understanding on what kind of macro you're
  45. calling.
  46. [7] When commenting out code using a #if statement, do NOT use 0 only. Instead
  47. use "<cvs username here>_0". For example, #if FOO_0, where FOO is your
  48. cvs user foo. This allows easier tracking of why code was commented out,
  49. especially in bundled libraries.
  50. [8] Do not define functions that are not available. For instance, if a
  51. library is missing a function, do not define the PHP version of the
  52. function, and do not raise a run-time error about the function not
  53. existing. End users should use function_exists() to test for the
  54. existence of a function
  55. [9] Prefer emalloc(), efree(), estrdup(), etc. to their standard C library
  56. counterparts. These functions implement an internal "safety-net"
  57. mechanism that ensures the deallocation of any unfreed memory at the
  58. end of a request. They also provide useful allocation and overflow
  59. information while running in debug mode.
  60. In almost all cases, memory returned to the engine must be allocated
  61. using emalloc().
  62. The use of malloc() should be limited to cases where a third-party
  63. library may need to control or free the memory, or when the memory in
  64. question needs to survive between multiple requests.
  65. Naming Conventions
  66. ------------------
  67. [1] Function names for user-level functions should be enclosed with in
  68. the PHP_FUNCTION() macro. They should be in lowercase, with words
  69. underscore delimited, with care taken to minimize the letter count.
  70. Abbreviations should not be used when they greatly decrease the
  71. readability of the function name itself.
  72. Good:
  73. 'mcrypt_enc_self_test'
  74. 'mysql_list_fields'
  75. Ok:
  76. 'mcrypt_module_get_algo_supported_key_sizes'
  77. (could be 'mcrypt_mod_get_algo_sup_key_sizes'?)
  78. 'get_html_translation_table'
  79. (could be 'html_get_trans_table'?)
  80. Bad:
  81. 'hw_GetObjectByQueryCollObj'
  82. 'pg_setclientencoding'
  83. 'jf_n_s_i'
  84. [2] If they are part of a "parent set" of functions, that parent should
  85. be included in the user function name, and should be clearly related
  86. to the parent program or function family. This should be in the form
  87. of parent_*.
  88. A family of 'foo' functions, for example:
  89. Good:
  90. 'foo_select_bar'
  91. 'foo_insert_baz'
  92. 'foo_delete_baz'
  93. Bad:
  94. 'fooselect_bar'
  95. 'fooinsertbaz'
  96. 'delete_foo_baz'
  97. [3] Function names used by user functions should be prefixed
  98. with "_php_", and followed by a word or an underscore-delimited list of
  99. words, in lowercase letters, that describes the function. If applicable,
  100. they should be declared 'static'.
  101. [4] Variable names must be meaningful. One letter variable names must be
  102. avoided, except for places where the variable has no real meaning or
  103. a trivial meaning (e.g. for (i=0; i<100; i++) ...).
  104. [5] Variable names should be in lowercase. Use underscores to separate
  105. between words.
  106. [6] Method names follow the 'studlyCaps' (also referred to as 'bumpy case'
  107. or 'camel caps') naming convention, with care taken to minimize the
  108. letter count. The initial letter of the name is lowercase, and each
  109. letter that starts a new 'word' is capitalized.
  110. Good:
  111. 'connect()'
  112. 'getData()'
  113. 'buildSomeWidget()'
  114. Bad:
  115. 'get_Data()'
  116. 'buildsomewidget'
  117. 'getI()'
  118. [7] Classes should be given descriptive names. Avoid using abbreviations where
  119. possible. Each word in the class name should start with a capital letter,
  120. without underscore delimiters (CampelCaps starting with a capital letter).
  121. The class name should be prefixed with the name of the 'parent set' (e.g.
  122. the name of the extension).
  123. Good:
  124. 'Curl'
  125. 'FooBar'
  126. Bad:
  127. 'foobar'
  128. 'foo_bar'
  129. Syntax and indentation
  130. ----------------------
  131. [1] Never use C++ style comments (i.e. // comment). Always use C-style
  132. comments instead. PHP is written in C, and is aimed at compiling
  133. under any ANSI-C compliant compiler. Even though many compilers
  134. accept C++-style comments in C code, you have to ensure that your
  135. code would compile with other compilers as well.
  136. The only exception to this rule is code that is Win32-specific,
  137. because the Win32 port is MS-Visual C++ specific, and this compiler
  138. is known to accept C++-style comments in C code.
  139. [2] Use K&R-style. Of course, we can't and don't want to
  140. force anybody to use a style he or she is not used to, but,
  141. at the very least, when you write code that goes into the core
  142. of PHP or one of its standard modules, please maintain the K&R
  143. style. This applies to just about everything, starting with
  144. indentation and comment styles and up to function declaration
  145. syntax.
  146. (see also http://www.catb.org/~esr/jargon/html/I/indent-style.html)
  147. [3] Be generous with whitespace and braces. Always prefer:
  148. if (foo) {
  149. bar;
  150. }
  151. to:
  152. if(foo)bar;
  153. Keep one empty line between the variable declaration section and
  154. the statements in a block, as well as between logical statement
  155. groups in a block. Maintain at least one empty line between
  156. two functions, preferably two.
  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 CVS 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.