diff options
author | Archil Imnadze <archil@imnadze.ge> | 2014-09-08 13:13:34 +0400 |
---|---|---|
committer | Archil Imnadze <archil@imnadze.ge> | 2014-09-08 13:13:34 +0400 |
commit | 2d2bac2e4c27e298c0e9e37e09ca2c149ee6734c (patch) | |
tree | 836e2f39eb2145425f53501f318714192dc77401 /CODING_STANDARDS | |
parent | be835b2d7055ad43179983b5e10986d3557b5612 (diff) | |
download | php-git-2d2bac2e4c27e298c0e9e37e09ca2c149ee6734c.tar.gz |
Update CODING_STANDARDS
Diffstat (limited to 'CODING_STANDARDS')
-rw-r--r-- | CODING_STANDARDS | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CODING_STANDARDS b/CODING_STANDARDS index 27fff07f60..2664d12bd5 100644 --- a/CODING_STANDARDS +++ b/CODING_STANDARDS @@ -42,7 +42,7 @@ Exceptions: 4. When writing functions that deal with strings, be sure to remember that PHP holds the length property of each string, and that it - shouldn't be calculated with strlen(). Write your functions in a such + shouldn't be calculated with strlen(). Write your functions in such a way so that they'll take advantage of the length property, both for efficiency and in order for them to be binary-safe. Functions that change strings and obtain their new lengths while |