Lines Matching refs:a

6 code in PHP should follow.  Since this file was added at a very late
25 - The function is given a boolean argument, that controls whether or not
40 Any other use of a numeric constant to specify different behavior
41 or actions should be done through a #define.
45 shouldn't be calculated with strlen(). Write your functions in a such
46 a way so that they'll take advantage of the length property, both
58 ``ZEND_*`` macros it gives a better understanding on what kind of macro
61 7. When commenting out code using a #if statement, do NOT use 0 only. Instead
66 8. Do not define functions that are not available. For instance, if a
67 library is missing a function, do not define the PHP version of the
68 function, and do not raise a run-time error about the function not
70 existence of a function
75 end of a request. They also provide useful allocation and overflow
81 The use of malloc() should be limited to cases where a third-party
109 2. If they are part of a "parent set" of functions, that parent should
126 with ``_php_``, and followed by a word or an underscore-delimited list of
132 a trivial meaning (e.g. for (i=0; i<100; i++) ...).
140 letter that starts a new 'word' is capitalized::
153 possible. Each word in the class name should start with a capital letter,
154 without underscore delimiters (CamelCaps starting with a capital letter).
199 force anybody to use a style he or she is not used to, but,
209 variable declaration section and the statements in a block, as well as
210 between logical statement groups in a block. Maintain at least one empty
227 of a line, followed by any number of whitespace.
240 prototype before it along with a brief one-line description of what the
255 the end of the fold, and should be on a separate line.
257 The "proto" keyword there is just a helper for the doc/genfuncsummary script
258 which generates a full function summary. Having this keyword in front of the
265 Returns a header object with the defined parameters */
267 And yes, please keep the prototype on a single line, even if that line
273 implementation of a new set of functions, it has been suggested
274 that the first implementation include a file labeled 'EXPERIMENTAL'