Lines Matching refs:a

4 PHP should follow. Since this file was added at a very late stage of the
23 * The function is given a boolean argument, that controls whether or not the
37 use of a numeric constant to specify different behavior or actions should be
38 done through a `#define`.
42 calculated with `strlen()`. Write your functions in such a way so that
54 macros it gives a better understanding on what kind of macro you're calling.
56 8. When commenting out code using a `#if` statement, do NOT use `0` only.
61 9. Do not define functions that are not available. For instance, if a library is
62 missing a function, do not define the PHP version of the function, and do
63 not raise a run-time error about the function not existing. End users should
64 use `function_exists()` to test for the existence of a function.
68 that ensures the deallocation of any unfreed memory at the end of a request.
75 The use of `malloc()` should be limited to cases where a third-party library
111 2. If they are part of a "parent set" of functions, that parent should be
134 followed by a word or an underscore-delimited list of words, in lowercase
139 except for places where the variable has no real meaning or a trivial
148 starts a new `word` is capitalized:
167 possible. Each word in the class name should start with a capital letter,
172 long form (e.g. HTTP or URL). Abbreviations start with a capital letter
238 2. Use K&R-style. Of course, we can't and don't want to force anybody to use a
246 variable declaration section and the statements in a block, as well as
247 between logical statement groups in a block. Maintain at least one empty
267 preprocessor directives you should put the `#` at the beginning of a line,
279 along with a brief one-line description of what the function does. It would look
296 fold, and should be on a separate line.
298 The `proto` keyword there is just a helper for the `doc/genfuncsummary` script
299 which generates a full function summary. Having this keyword in front of the
307 Returns a header object with the defined parameters */
310 And yes, please keep the prototype on a single line, even if that line is
316 of a new set of functions, it has been suggested that the first implementation
317 include a file labeled `EXPERIMENTAL` in the function directory, and that the