up vote 2 down vote favorite
1
share [g+] share [fb]

I recently found out that PHP 5.3 supports new language construct called GOTO. Everybody knows what it does. However, it's not exactly the traditional GOTO, it's just a jump label. I'm interesting in knowing whether this GOTO is evil and implies bad code?

link|improve this question
see Question stackoverflow.com/questions/723324/… – Cassy Dec 14 '09 at 10:08
2  
GOTO is like regexp for HTML parsing; codinghorror.com/blog/archives/001311.html – Rubens Farias Dec 14 '09 at 10:08
1  
in college i always used to use goto statements when i wanted to piss off my professors, muahahaha....the programs would of course still work perfectly but i could always see their eyes twitching when they'd come across those little statements – espais Dec 14 '09 at 10:18
5  
>"However, it's not exactly the traditional GOTO, it's just a jump label." How does this differ from the "traditional" GOTO? – Anon. Dec 14 '09 at 10:20
feedback

8 Answers

up vote 20 down vote accepted

Unless you are programming in assembler, GOTO should always be treated the same way as the life vest of the airplanes: it is good to have them available, but if you need to use them it means that you are in big trouble.

link|improve this answer
10  
I would rather say that "if you need to use them AND YOU DON'T HAVE them, you are in big trouble". Which is a strong point in favour of having goto into a programming language. – Remo.D Dec 14 '09 at 10:25
feedback

I can't believe nobody posted this :)

xkcd - goto

Granted, PHP is not compiled... Maybe the raptor will chase you on every visit to your website?

link|improve this answer
2  
The funniest bit is that his comic is on the php manual reference for goto: es.php.net/manual/en/control-structures.goto.php so yes, the raptor WILL chase you, even in PHP ;) also great alt text: "Neal Stephenson thinks it's cute to name his labels 'dengo'" – danii Dec 14 '09 at 11:01
I would give you +2 if I could (one for being right, one for the comic) – Hippo Dec 14 '09 at 11:12
feedback

Bad structuring of code is evil, regardless the control structure you use.

I personally prefer a goto that makes clear the flow of the program to "control variables" and nested "if" that will indirectly just cause the same branch in the code.

So, just write the two versions (with and without GOTO) and see which one it's easier to comprehend. Then the choice it's easy.

link|improve this answer
+1 for the first two paragraphs. Why isn't this the accepted answer instead? :-) – MattBianco Aug 19 '10 at 14:35
feedback

Are guns evil? Both can be used for good or for evil. I would say it was easier to write good code without goto, than with.

link|improve this answer
4  
Guns don't kill people. Magic missiles do. – Alex Dec 14 '09 at 10:08
feedback

Any language feature that can make code more readable in a given situation is A Good Thing. GOTO is one such language feature, even if those situations are few and far between. If we forbade any syntax that made it possible for poor programmers to write bad, unmaintainable code our jobs would be an awful lot harder.

link|improve this answer
feedback

GOTO usually is evil because let you build unstructured code. With the usual loops you are able to build good structured code that is easy to follow because is, just that, structured.

When you have code that is not structured and that can jump from here to there you have just found the evil coming from the GOTO sentence. Almost always is better to not use it, maybe once in a 10.000 lines there is a place that a GOTO sentence simplifies A LOT the code and is not evil but if you are unsure do like me and forget about GOTO :)

Hope this helps.

EDIT: Well, just to add my own opinion here, there are other instructions that allow to create unstructured code and that are not considered evil when I think they should be.

For example a return in middle of a function is a GOTO to the end of it so I avoid them and use only one return in each function just at its end.

Other languages like Vb.Net (maybe others too) allow to do Exit For, Exit While, breaks and things like these that also unstructure the code and I think should be avoid.

link|improve this answer
3  
I'm scared to use goto because anyone who reads my code might completely lose faith in me – Carson Myers Dec 14 '09 at 10:14
I haven't used a goto (except in assembly) for nearly 20 years. Not even when I was writing (DEC) Fortran. – Alnitak Dec 14 '09 at 10:21
feedback

goto is evil in any language.

However sometimes a little evil is a good thing. muhaaahaahaaa...

link|improve this answer
feedback

As a software engineer, i mostly work on "mainframes" and "big corporate servers"... And our daily language (I mean the one in 95% of our base code) is Cobol, which uses extensively GOTOs.

This usage doesn't mean the code is bad. It just means that this tool (GOTO) was the right one at the moment programs were written.

To answer Kaitsuli's question, I think it can be useful tool when writing PHP scripts. On the other hand, a lot of scripts were achieved without it for almost a decade by now. Furthermore, it goes against PHP's evolution with more object-oriented features.

IMHO, it's nor good nor a bad thing for the code be produced : good programs will still be good and "horror programs" will be worse... The only question is : "Why adding GOTOs 10 years after proving it was not necessary ?".

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.