Lines Matching refs:a

6 code in PHP should follow.  Since this file was added at a very late
26 - The function is given a boolean argument, that controls whether or not
41 Any other use of a numeric constant to specify different behavior
42 or actions should be done through a #define.
47 a way so that they'll take advantage of the length property, both
59 ``ZEND_*`` macros it gives a better understanding on what kind of macro
62 7. When commenting out code using a #if statement, do NOT use 0 only. Instead
67 8. Do not define functions that are not available. For instance, if a
68 library is missing a function, do not define the PHP version of the
69 function, and do not raise a run-time error about the function not
71 existence of a function
76 end of a request. They also provide useful allocation and overflow
82 The use of malloc() should be limited to cases where a third-party
110 2. If they are part of a "parent set" of functions, that parent should
128 with ``_php_``, and followed by a word or an underscore-delimited list of
134 a trivial meaning (e.g. for (i=0; i<100; i++) ...).
142 letter that starts a new 'word' is capitalized::
155 possible. Each word in the class name should start with a capital letter,
156 without underscore delimiters (CamelCaps starting with a capital letter).
201 force anybody to use a style he or she is not used to, but,
211 variable declaration section and the statements in a block, as well as
212 between logical statement groups in a block. Maintain at least one empty
229 of a line, followed by any number of whitespace.
242 prototype before it along with a brief one-line description of what the
257 the end of the fold, and should be on a separate line.
259 The "proto" keyword there is just a helper for the doc/genfuncsummary script
260 which generates a full function summary. Having this keyword in front of the
267 Returns a header object with the defined parameters */
269 And yes, please keep the prototype on a single line, even if that line
275 implementation of a new set of functions, it has been suggested
276 that the first implementation include a file labeled 'EXPERIMENTAL'