Hello, internals.
I was trying to find code style guide for php-src project on the
wiki.php.net
The only thing i found:

http://doc.php.net/tutorial/style.php

Do we have a code style guide in the form of a document?

Will it be ok if I use these parameters:

1. Encoding: utf-8 (without BOM)
2. Line separator: \n
3. Line width: 120 chars
4. If something doesn't fit on the line, then break the line and start on
the next one with a single indent relative to the indent of the current
code block.
Example:
function fun(int a, int b, int c,
    int d)

5. Сommas, colons, question marks etc remain on the broken line. Example:
c = (a == b) ?
    1 :
    2;

char a[] = {
1, 2, 3, 4, 5, 6,
7, 8, 9, 10, 11,
};

Reply via email to