![]() |
TIP: Coding styles and $end errors
Hi
I'm sure many of you have come across the "Unexpected $end" or "Missing $end" messages many times and it's probably taken you many minutes, hours or even days to find it. If its the latter two options i'm sure if you're like me it's probably taken you a lot of desk thumping to to identify the fault. Firstly I'd like to show you two different coding styles here: PHP Code:
http://i878.photobucket.com/albums/a...man/PHP/NP.jpg If you look at example A, you'll see that the opening brace is highlighted red along with its partner - Great huh? Look at example B though and you'll see why it's so much easier to debug. Not only are the opening and closing braces highlighted red, NP++ also draws a red dotted line down the page directly to it so you can see it (Apologies, Photoshop didn't preserve the red dotted line very well). If you indent each block of braces as I have then it only makes things far easier to debug. Following a recent thread by a member today I thought I would post this thread with a practical example in the hope that it helps others out here. The code has been slightly modified to remove the non-necessary html but it still serves as a good example for this demonstration: PHP Code:
Style A: http://i878.photobucket.com/albums/a...an/PHP/NPA.jpg Notice how the opening { are paired with the closing } in red circled with matching colours. The single { by itself is circled in red. Ok, by pointing at each opening { I've found the { without its partner - but where should I now put the closing } ? The answer lies in Style B - using indentations and brackets on their own lines. Take a look at this: http://i878.photobucket.com/albums/a...an/PHP/NPB.jpg Again, you can see all the correctly paired opening { and closing } in red circled with matching colours with the odd { circled in red. Now due to the original authors code, there is no way of knowing if that for() block was supposed to be inside that block or outside of it. For demonstration purposes only, I'm going to show you what would of happened if it was supposed to be inside: http://i878.photobucket.com/albums/a...an/PHP/NPC.jpg Did you notice that red dotted line circled in blue? - It shows you exactly where the closing } should be. Now, lets look at the finished code: http://i878.photobucket.com/albums/a...an/PHP/NPD.jpg Done, with ease. No time wasted, no head scratching, no convincing yourself there is no error with the code and the computer is wrong etc. I hope that by posting this topic, some of you will see tha advantages that Style B has when used with a proper editor like Notepad++ and that it can actually help you to fix code rather than make it difficult like style A. |
I'm quite a fan of this style with a minor variation: I set each brace aligned with the branch or control, and indent only where we exceed 80 chars on a line:
Code:
public int myMethod(<T extends Number> myIn)I have NEVER been a fan of the braced single line, as its particularly difficult to identify braced and non-braced control blocks: Code:
int c = 0;The only thing to note, is that many employers do have a particular code format style. So you must adhere to these styles. Fortunately, IDE's such as eclipse allow you to design multiple code templates, so when you are done with how you like to do it, you can apply a work style to reformat it if it uses the more common format. This thread also deserves to be added to the PHP Frequenly Asked Questions thread. Edit: Sorry, can't quite recall the java syntax there for the exception. Its either InvalidArgumentException or IllegalArgumentException, but we shouldn't really get either in any case, it was just to show the indenting |
Nice job on your tip. I used to use the first style but when I first started using CodeIgniter I switched to the second style. Mine's a bit different from yours-- I adopted CodeIgniter's style completely so my brackets are set on the same indent as the block identifier and all code inside the block is on its own indent. Notepad++ draws nice little dotted lines giving it a clean look.
http://pudgywebguy.com/img/indentstyle.jpg |
Hi guys
Yeah I generally see the following two styles as being the same thing: PHP Code:
Hopefully the screen shots in this thread will enlighten others ;) |
| All times are GMT +1. The time now is 02:31 AM. |
Powered by vBulletin®
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.