Derek Jones | 8ede1a2 | 2011-10-05 13:34:52 -0500 | [diff] [blame] | 1 | ######################## |
| 2 | General Style and Syntax |
| 3 | ######################## |
| 4 | |
| 5 | The following page describes the use of coding rules adhered to when |
| 6 | developing CodeIgniter. |
| 7 | |
| 8 | .. contents:: Table of Contents |
| 9 | |
| 10 | File Format |
| 11 | =========== |
| 12 | |
| 13 | Files should be saved with Unicode (UTF-8) encoding. The BOM should |
| 14 | *not* be used. Unlike UTF-16 and UTF-32, there's no byte order to |
| 15 | indicate in a UTF-8 encoded file, and the BOM can have a negative side |
| 16 | effect in PHP of sending output, preventing the application from being |
| 17 | able to set its own headers. Unix line endings should be used (LF). |
| 18 | |
| 19 | Here is how to apply these settings in some of the more common text |
| 20 | editors. Instructions for your text editor may vary; check your text |
| 21 | editor's documentation. |
| 22 | |
| 23 | TextMate |
| 24 | '''''''' |
| 25 | |
| 26 | #. Open the Application Preferences |
| 27 | #. Click Advanced, and then the "Saving" tab |
| 28 | #. In "File Encoding", select "UTF-8 (recommended)" |
| 29 | #. In "Line Endings", select "LF (recommended)" |
| 30 | #. *Optional:* Check "Use for existing files as well" if you wish to |
| 31 | modify the line endings of files you open to your new preference. |
| 32 | |
| 33 | BBEdit |
| 34 | '''''' |
| 35 | |
| 36 | #. Open the Application Preferences |
| 37 | #. Select "Text Encodings" on the left. |
| 38 | #. In "Default text encoding for new documents", select "Unicode (UTF-8, |
| 39 | no BOM)" |
| 40 | #. *Optional:* In "If file's encoding can't be guessed, use", select |
| 41 | "Unicode (UTF-8, no BOM)" |
| 42 | #. Select "Text Files" on the left. |
| 43 | #. In "Default line breaks", select "Mac OS X and Unix (LF)" |
| 44 | |
| 45 | PHP Closing Tag |
| 46 | =============== |
| 47 | |
| 48 | The PHP closing tag on a PHP document **?>** is optional to the PHP |
| 49 | parser. However, if used, any whitespace following the closing tag, |
| 50 | whether introduced by the developer, user, or an FTP application, can |
| 51 | cause unwanted output, PHP errors, or if the latter are suppressed, |
| 52 | blank pages. For this reason, all PHP files should **OMIT** the closing |
| 53 | PHP tag, and instead use a comment block to mark the end of file and |
| 54 | it's location relative to the application root. This allows you to still |
| 55 | identify a file as being complete and not truncated. |
| 56 | |
| 57 | :: |
| 58 | |
| 59 | INCORRECT: <?php echo "Here's my code!"; ?> CORRECT: <?php echo "Here's my code!"; /* End of file myfile.php */ /* Location: ./system/modules/mymodule/myfile.php */ |
| 60 | |
| 61 | Class and Method Naming |
| 62 | ======================= |
| 63 | |
| 64 | Class names should always start with an uppercase letter. Multiple words |
| 65 | should be separated with an underscore, and not CamelCased. All other |
| 66 | class methods should be entirely lowercased and named to clearly |
| 67 | indicate their function, preferably including a verb. Try to avoid |
| 68 | overly long and verbose names. |
| 69 | |
| 70 | :: |
| 71 | |
| 72 | INCORRECT: class superclass class SuperClass CORRECT: class Super_class |
| 73 | |
| 74 | :: |
| 75 | |
| 76 | class Super_class { function __construct() { } } |
| 77 | |
| 78 | Examples of improper and proper method naming:: |
| 79 | |
| 80 | INCORRECT: function fileproperties() // not descriptive and needs underscore separator function fileProperties() // not descriptive and uses CamelCase function getfileproperties() // Better! But still missing underscore separator function getFileProperties() // uses CamelCase function get_the_file_properties_from_the_file() // wordy CORRECT: function get_file_properties() // descriptive, underscore separator, and all lowercase letters |
| 81 | |
| 82 | Variable Names |
| 83 | ============== |
| 84 | |
| 85 | The guidelines for variable naming is very similar to that used for |
| 86 | class methods. Namely, variables should contain only lowercase letters, |
| 87 | use underscore separators, and be reasonably named to indicate their |
| 88 | purpose and contents. Very short, non-word variables should only be used |
| 89 | as iterators in for() loops. |
| 90 | |
| 91 | :: |
| 92 | |
| 93 | INCORRECT: $j = 'foo'; // single letter variables should only be used in for() loops $Str // contains uppercase letters $bufferedText // uses CamelCasing, and could be shortened without losing semantic meaning $groupid // multiple words, needs underscore separator $name_of_last_city_used // too long CORRECT: for ($j = 0; $j < 10; $j++) $str $buffer $group_id $last_city |
| 94 | |
| 95 | Commenting |
| 96 | ========== |
| 97 | |
| 98 | In general, code should be commented prolifically. It not only helps |
| 99 | describe the flow and intent of the code for less experienced |
| 100 | programmers, but can prove invaluable when returning to your own code |
| 101 | months down the line. There is not a required format for comments, but |
| 102 | the following are recommended. |
| 103 | |
| 104 | `DocBlock <http://manual.phpdoc.org/HTMLSmartyConverter/HandS/phpDocumentor/tutorial_phpDocumentor.howto.pkg.html#basics.docblock>`_ |
| 105 | style comments preceding class and method declarations so they can be |
| 106 | picked up by IDEs:: |
| 107 | |
| 108 | /** * Super Class * * @package Package Name * @subpackage Subpackage * @category Category * @author Author Name * @link http://example.com */ class Super_class { |
| 109 | |
| 110 | :: |
| 111 | |
| 112 | /** * Encodes string for use in XML * * @access public * @param string * @return string */ function xml_encode($str) |
| 113 | |
| 114 | Use single line comments within code, leaving a blank line between large |
| 115 | comment blocks and code. |
| 116 | |
| 117 | :: |
| 118 | |
| 119 | // break up the string by newlines $parts = explode("\n", $str); // A longer comment that needs to give greater detail on what is // occurring and why can use multiple single-line comments. Try to // keep the width reasonable, around 70 characters is the easiest to // read. Don't hesitate to link to permanent external resources // that may provide greater detail: // // http://example.com/information_about_something/in_particular/ $parts = $this->foo($parts); |
| 120 | |
| 121 | Constants |
| 122 | ========= |
| 123 | |
| 124 | Constants follow the same guidelines as do variables, except constants |
| 125 | should always be fully uppercase. *Always use CodeIgniter constants when |
| 126 | appropriate, i.e. SLASH, LD, RD, PATH_CACHE, etc.* |
| 127 | |
| 128 | :: |
| 129 | |
| 130 | INCORRECT: myConstant // missing underscore separator and not fully uppercase N // no single-letter constants S_C_VER // not descriptive $str = str_replace('{foo}', 'bar', $str); // should use LD and RD constants CORRECT: MY_CONSTANT NEWLINE SUPER_CLASS_VERSION $str = str_replace(LD.'foo'.RD, 'bar', $str); |
| 131 | |
| 132 | TRUE, FALSE, and NULL |
| 133 | ===================== |
| 134 | |
| 135 | **TRUE**, **FALSE**, and **NULL** keywords should always be fully |
| 136 | uppercase. |
| 137 | |
| 138 | :: |
| 139 | |
| 140 | INCORRECT: if ($foo == true) $bar = false; function foo($bar = null) CORRECT: if ($foo == TRUE) $bar = FALSE; function foo($bar = NULL) |
| 141 | |
| 142 | Logical Operators |
| 143 | ================= |
| 144 | |
| 145 | Use of **\|\|** is discouraged as its clarity on some output devices is |
| 146 | low (looking like the number 11 for instance). **&&** is preferred over |
| 147 | **AND** but either are acceptable, and a space should always precede and |
| 148 | follow **!**. |
| 149 | |
| 150 | :: |
| 151 | |
| 152 | INCORRECT: if ($foo || $bar) if ($foo AND $bar) // okay but not recommended for common syntax highlighting applications if (!$foo) if (! is_array($foo)) CORRECT: if ($foo OR $bar) if ($foo && $bar) // recommended if ( ! $foo) if ( ! is_array($foo)) |
| 153 | |
| 154 | Comparing Return Values and Typecasting |
| 155 | ======================================= |
| 156 | |
| 157 | Some PHP functions return FALSE on failure, but may also have a valid |
| 158 | return value of "" or 0, which would evaluate to FALSE in loose |
| 159 | comparisons. Be explicit by comparing the variable type when using these |
| 160 | return values in conditionals to ensure the return value is indeed what |
| 161 | you expect, and not a value that has an equivalent loose-type |
| 162 | evaluation. |
| 163 | |
| 164 | Use the same stringency in returning and checking your own variables. |
| 165 | Use **===** and **!==** as necessary. |
| 166 | :: |
| 167 | |
| 168 | INCORRECT: // If 'foo' is at the beginning of the string, strpos will return a 0, // resulting in this conditional evaluating as TRUE if (strpos($str, 'foo') == FALSE) CORRECT: if (strpos($str, 'foo') === FALSE) |
| 169 | |
| 170 | :: |
| 171 | |
| 172 | INCORRECT: function build_string($str = "") { if ($str == "") // uh-oh! What if FALSE or the integer 0 is passed as an argument? { } } CORRECT: function build_string($str = "") { if ($str === "") { } } |
| 173 | |
| 174 | |
| 175 | See also information regarding |
| 176 | `typecasting <http://us3.php.net/manual/en/language.types.type-juggling.php#language.types.typecasting>`_, |
| 177 | which can be quite useful. Typecasting has a slightly different effect |
| 178 | which may be desirable. When casting a variable as a string, for |
| 179 | instance, NULL and boolean FALSE variables become empty strings, 0 (and |
| 180 | other numbers) become strings of digits, and boolean TRUE becomes "1":: |
| 181 | |
| 182 | $str = (string) $str; // cast $str as a string |
| 183 | |
| 184 | Debugging Code |
| 185 | ============== |
| 186 | |
| 187 | No debugging code can be left in place for submitted add-ons unless it |
| 188 | is commented out, i.e. no var_dump(), print_r(), die(), and exit() |
| 189 | calls that were used while creating the add-on, unless they are |
| 190 | commented out. |
| 191 | |
| 192 | :: |
| 193 | |
| 194 | // print_r($foo); |
| 195 | |
| 196 | Whitespace in Files |
| 197 | =================== |
| 198 | |
| 199 | No whitespace can precede the opening PHP tag or follow the closing PHP |
| 200 | tag. Output is buffered, so whitespace in your files can cause output to |
| 201 | begin before CodeIgniter outputs its content, leading to errors and an |
| 202 | inability for CodeIgniter to send proper headers. In the examples below, |
| 203 | select the text with your mouse to reveal the incorrect whitespace. |
| 204 | |
| 205 | **INCORRECT**:: |
| 206 | |
| 207 | <?php // ...there is whitespace and a linebreak above the opening PHP tag // as well as whitespace after the closing PHP tag ?> |
| 208 | |
| 209 | **CORRECT**:: |
| 210 | |
| 211 | <?php // this sample has no whitespace before or after the opening and closing PHP tags ?> |
| 212 | |
| 213 | Compatibility |
| 214 | ============= |
| 215 | |
| 216 | Unless specifically mentioned in your add-on's documentation, all code |
| 217 | must be compatible with PHP version 5.1+. Additionally, do not use PHP |
| 218 | functions that require non-default libraries to be installed unless your |
| 219 | code contains an alternative method when the function is not available, |
| 220 | or you implicitly document that your add-on requires said PHP libraries. |
| 221 | |
| 222 | Class and File Names using Common Words |
| 223 | ======================================= |
| 224 | |
| 225 | When your class or filename is a common word, or might quite likely be |
| 226 | identically named in another PHP script, provide a unique prefix to help |
| 227 | prevent collision. Always realize that your end users may be running |
| 228 | other add-ons or third party PHP scripts. Choose a prefix that is unique |
| 229 | to your identity as a developer or company. |
| 230 | |
| 231 | :: |
| 232 | |
| 233 | INCORRECT: class Email pi.email.php class Xml ext.xml.php class Import mod.import.php CORRECT: class Pre_email pi.pre_email.php class Pre_xml ext.pre_xml.php class Pre_import mod.pre_import.php |
| 234 | |
| 235 | Database Table Names |
| 236 | ==================== |
| 237 | |
| 238 | Any tables that your add-on might use must use the 'exp\_' prefix, |
| 239 | followed by a prefix uniquely identifying you as the developer or |
| 240 | company, and then a short descriptive table name. You do not need to be |
| 241 | concerned about the database prefix being used on the user's |
| 242 | installation, as CodeIgniter's database class will automatically convert |
| 243 | 'exp\_' to what is actually being used. |
| 244 | |
| 245 | :: |
| 246 | |
| 247 | INCORRECT: email_addresses // missing both prefixes pre_email_addresses // missing exp_ prefix exp_email_addresses // missing unique prefix CORRECT: exp_pre_email_addresses |
| 248 | |
| 249 | **NOTE:** Be mindful that MySQL has a limit of 64 characters for table |
| 250 | names. This should not be an issue as table names that would exceed this |
| 251 | would likely have unreasonable names. For instance, the following table |
| 252 | name exceeds this limitation by one character. Silly, no? |
| 253 | **exp_pre_email_addresses_of_registered_users_in_seattle_washington** |
| 254 | One File per Class |
| 255 | ================== |
| 256 | |
| 257 | Use separate files for each class your add-on uses, unless the classes |
| 258 | are *closely related*. An example of CodeIgniter files that contains |
| 259 | multiple classes is the Database class file, which contains both the DB |
| 260 | class and the DB_Cache class, and the Magpie plugin, which contains |
| 261 | both the Magpie and Snoopy classes. |
| 262 | |
| 263 | Whitespace |
| 264 | ========== |
| 265 | |
| 266 | Use tabs for whitespace in your code, not spaces. This may seem like a |
| 267 | small thing, but using tabs instead of whitespace allows the developer |
| 268 | looking at your code to have indentation at levels that they prefer and |
| 269 | customize in whatever application they use. And as a side benefit, it |
| 270 | results in (slightly) more compact files, storing one tab character |
| 271 | versus, say, four space characters. |
| 272 | |
| 273 | Line Breaks |
| 274 | =========== |
| 275 | |
| 276 | Files must be saved with Unix line breaks. This is more of an issue for |
| 277 | developers who work in Windows, but in any case ensure that your text |
| 278 | editor is setup to save files with Unix line breaks. |
| 279 | |
| 280 | Code Indenting |
| 281 | ============== |
| 282 | |
| 283 | Use Allman style indenting. With the exception of Class declarations, |
| 284 | braces are always placed on a line by themselves, and indented at the |
| 285 | same level as the control statement that "owns" them. |
| 286 | |
| 287 | :: |
| 288 | |
| 289 | INCORRECT: function foo($bar) { // ... } foreach ($arr as $key => $val) { // ... } if ($foo == $bar) { // ... } else { // ... } for ($i = 0; $i < 10; $i++) { for ($j = 0; $j < 10; $j++) { // ... } } CORRECT: function foo($bar) { // ... } foreach ($arr as $key => $val) { // ... } if ($foo == $bar) { // ... } else { // ... } for ($i = 0; $i < 10; $i++) { for ($j = 0; $j < 10; $j++) { // ... } } |
| 290 | |
| 291 | Bracket and Parenthetic Spacing |
| 292 | =============================== |
| 293 | |
| 294 | In general, parenthesis and brackets should not use any additional |
| 295 | spaces. The exception is that a space should always follow PHP control |
| 296 | structures that accept arguments with parenthesis (declare, do-while, |
| 297 | elseif, for, foreach, if, switch, while), to help distinguish them from |
| 298 | functions and increase readability. |
| 299 | |
| 300 | :: |
| 301 | |
| 302 | INCORRECT: $arr[ $foo ] = 'foo'; CORRECT: $arr[$foo] = 'foo'; // no spaces around array keys INCORRECT: function foo ( $bar ) { } CORRECT: function foo($bar) // no spaces around parenthesis in function declarations { } INCORRECT: foreach( $query->result() as $row ) CORRECT: foreach ($query->result() as $row) // single space following PHP control structures, but not in interior parenthesis |
| 303 | |
| 304 | Localized Text |
| 305 | ============== |
| 306 | |
| 307 | Any text that is output in the control panel should use language |
| 308 | variables in your lang file to allow localization. |
| 309 | |
| 310 | :: |
| 311 | |
| 312 | INCORRECT: return "Invalid Selection"; CORRECT: return $this->lang->line('invalid_selection'); |
| 313 | |
| 314 | Private Methods and Variables |
| 315 | ============================= |
| 316 | |
| 317 | Methods and variables that are only accessed internally by your class, |
| 318 | such as utility and helper functions that your public methods use for |
| 319 | code abstraction, should be prefixed with an underscore. |
| 320 | |
| 321 | :: |
| 322 | |
| 323 | convert_text() // public method _convert_text() // private method |
| 324 | |
| 325 | PHP Errors |
| 326 | ========== |
| 327 | |
| 328 | Code must run error free and not rely on warnings and notices to be |
| 329 | hidden to meet this requirement. For instance, never access a variable |
| 330 | that you did not set yourself (such as $_POST array keys) without first |
| 331 | checking to see that it isset(). |
| 332 | |
| 333 | Make sure that while developing your add-on, error reporting is enabled |
| 334 | for ALL users, and that display_errors is enabled in the PHP |
| 335 | environment. You can check this setting with:: |
| 336 | |
| 337 | if (ini_get('display_errors') == 1) { exit "Enabled"; } |
| 338 | |
| 339 | On some servers where display_errors is disabled, and you do not have |
| 340 | the ability to change this in the php.ini, you can often enable it with:: |
| 341 | |
| 342 | ini_set('display_errors', 1); |
| 343 | |
| 344 | **NOTE:** Setting the |
| 345 | `display_errors <http://us.php.net/manual/en/ref.errorfunc.php#ini.display-errors>`_ |
| 346 | setting with ini_set() at runtime is not identical to having it enabled |
| 347 | in the PHP environment. Namely, it will not have any effect if the |
| 348 | script has fatal errors |
| 349 | |
| 350 | Short Open Tags |
| 351 | =============== |
| 352 | |
| 353 | Always use full PHP opening tags, in case a server does not have |
| 354 | short_open_tag enabled. |
| 355 | |
| 356 | :: |
| 357 | |
| 358 | INCORRECT: <? echo $foo; ?> <?=$foo?> CORRECT: <?php echo $foo; ?> |
| 359 | |
| 360 | One Statement Per Line |
| 361 | ====================== |
| 362 | |
| 363 | Never combine statements on one line. |
| 364 | |
| 365 | :: |
| 366 | |
| 367 | INCORRECT: $foo = 'this'; $bar = 'that'; $bat = str_replace($foo, $bar, $bag); CORRECT: $foo = 'this'; $bar = 'that'; $bat = str_replace($foo, $bar, $bag); |
| 368 | |
| 369 | Strings |
| 370 | ======= |
| 371 | |
| 372 | Always use single quoted strings unless you need variables parsed, and |
| 373 | in cases where you do need variables parsed, use braces to prevent |
| 374 | greedy token parsing. You may also use double-quoted strings if the |
| 375 | string contains single quotes, so you do not have to use escape |
| 376 | characters. |
| 377 | |
| 378 | :: |
| 379 | |
| 380 | INCORRECT: "My String" // no variable parsing, so no use for double quotes "My string $foo" // needs braces 'SELECT foo FROM bar WHERE baz = \'bag\'' // ugly CORRECT: 'My String' "My string {$foo}" "SELECT foo FROM bar WHERE baz = 'bag'" |
| 381 | |
| 382 | SQL Queries |
| 383 | =========== |
| 384 | |
| 385 | MySQL keywords are always capitalized: SELECT, INSERT, UPDATE, WHERE, |
| 386 | AS, JOIN, ON, IN, etc. |
| 387 | |
| 388 | Break up long queries into multiple lines for legibility, preferably |
| 389 | breaking for each clause. |
| 390 | |
| 391 | :: |
| 392 | |
| 393 | INCORRECT: // keywords are lowercase and query is too long for // a single line (... indicates continuation of line) $query = $this->db->query("select foo, bar, baz, foofoo, foobar as raboof, foobaz from exp_pre_email_addresses ...where foo != 'oof' and baz != 'zab' order by foobaz limit 5, 100"); CORRECT: $query = $this->db->query("SELECT foo, bar, baz, foofoo, foobar AS raboof, foobaz FROM exp_pre_email_addresses WHERE foo != 'oof' AND baz != 'zab' ORDER BY foobaz LIMIT 5, 100"); |
| 394 | |
| 395 | Default Function Arguments |
| 396 | ========================== |
| 397 | |
| 398 | Whenever appropriate, provide function argument defaults, which helps |
| 399 | prevent PHP errors with mistaken calls and provides common fallback |
| 400 | values which can save a few lines of code. Example:: |
| 401 | |
| 402 | function foo($bar = '', $baz = FALSE) |
| 403 | |