Defend PHP; convince me it isn't horrible - Stack Overflow most recent 30 from stackoverflow.com 2009-11-22T01:36:33Z http://stackoverflow.com/feeds/question/309300 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/309300/defend-php-convince-me-it-isnt-horrible 206 Defend PHP; convince me it isn't horrible Jason L 2008-11-21T16:16:42Z 2009-10-12T22:04:02Z <p>I made a tongue-in-cheek comment in another question thread calling PHP a terrible language and it got down-voted like crazy. Apparently there are lots of people here who love PHP.</p> <p>So I'm genuinely curious. What am I missing? What makes PHP a good language?</p> <p>Here are my reasons for disliking it:</p> <ul> <li><p>PHP has inconsistent naming of built-in and library functions. Predictable naming patterns are important in any design. </p></li> <li><p>The PHP developers constantly deprecate built-in functions and lower-level functionality. A good example is when they deprecated pass-by-reference for functions. This created a nightmare for anyone doing, say, function callbacks.</p></li> <li><p>A lack of consideration in redesign. The above deprecation eliminated the ability to, in many cases, provide default keyword values for functions. They fixed this in PHP 5, but they deprecated the pass-by-reference in PHP 4!</p></li> <li><p>Poor execution of name spaces (formerly no name spaces at all). Now that name spaces exist, what do we use as the dereference character? Backslash! The character used universally for escaping, even in PHP!</p></li> <li><p>Overly-broad implicit type conversion leads to bugs. I have no problem with implicit conversions of, say, float to integer or back again. But PHP (last I checked) will happily attempt to magically convert an array to an integer.</p></li> <li><p>Poor recursion performance. Recursion is a fundamentally important tool for writing in any language; it can make complex algorithms far simpler. Poor support is inexcusable.</p></li> <li><p>Functions are case insensitive. I have no idea what they were thinking on this one. A programming language is a way to specify behavior to both a computer and a reader of the code without ambiguity. Case insensitivity introduces much ambiguity.</p></li> <li><p>PHP encourages (practically requires) a coupling of processing with presentation. Yes, you can write PHP that doesn't do so, but it's actually easier to write code in the incorrect (from a sound design perspective) manner.</p></li> <li><p>PHP performance is abysmal without caching. Does anyone sell a commercial caching product for PHP? Oh, look, the designers of PHP do.</p></li> </ul> <p>Worst of all, PHP convinces people that designing web applications is easy. And it does indeed make much of the effort involved much easier. But the fact is, designing a web application that is both secure and efficient is a very difficult task.</p> <p>By convincing so many to take up programming, PHP has taught an entire subgroup of programmers bad habits and bad design. It's given them access to capabilities that they lack the understanding to use safely. This has led to PHP's reputation as being insecure.</p> <p>(However, I will readily admit that PHP is no more or less secure than any other web programming language.)</p> <p>What is it that I'm missing about PHP? I'm seeing an organically-grown, poorly-managed mess of a language that's spawning poor programmers.</p> <p>So convince me otherwise!</p> http://stackoverflow.com/questions/309300/defend-php-convince-me-it-isnt-horrible/309311#309311 5 Answer by Vincent Van Den Berghe for Defend PHP; convince me it isn't horrible Vincent Van Den Berghe 2008-11-21T16:19:21Z 2008-11-21T16:19:21Z <p>It's free!</p> <p>Oh wait...</p> http://stackoverflow.com/questions/309300/defend-php-convince-me-it-isnt-horrible/309312#309312 0 Answer by Christopher Mahan for Defend PHP; convince me it isn't horrible Christopher Mahan 2008-11-21T16:19:31Z 2008-11-21T16:19:31Z <p>Non-programmer types can use it?</p> http://stackoverflow.com/questions/309300/defend-php-convince-me-it-isnt-horrible/309323#309323 -4 Answer by Elie for Defend PHP; convince me it isn't horrible Elie 2008-11-21T16:22:27Z 2008-11-21T16:22:27Z <p>No can do... it's great, as long as you don't actually use it or support it.</p> http://stackoverflow.com/questions/309300/defend-php-convince-me-it-isnt-horrible/309324#309324 9 Answer by zarawesome for Defend PHP; convince me it isn't horrible zarawesome 2008-11-21T16:22:42Z 2008-11-21T16:22:42Z <p>If you have a problem in your application, you can always find someone nearby that knows PHP.</p> http://stackoverflow.com/questions/309300/defend-php-convince-me-it-isnt-horrible/309336#309336 6 Answer by Ben for Defend PHP; convince me it isn't horrible Ben 2008-11-21T16:24:39Z 2008-11-21T16:24:39Z <p>Here's what I think: ok, it's not perfect, but if you want to put something together reasonably quickly which is not hugely complex, then PHP is (in my opinion) the best way to do it, particularly if it's a web application with a database back-end. I guess the real point is that for people who know how to program but don't want to get into the complexities of Django etc., PHP is very handy.</p> http://stackoverflow.com/questions/309300/defend-php-convince-me-it-isnt-horrible/309366#309366 71 Answer by Vinko Vrsalovic for Defend PHP; convince me it isn't horrible Vinko Vrsalovic 2008-11-21T16:30:13Z 2008-11-21T16:53:52Z <p>All your criticisms (and some more) are valid. You are allowed and even expected to hate PHP. </p> <p>But, then again, it has some benefits:</p> <ul> <li>Ubiquitous</li> <li>Fast (especially using opcode caches)</li> <li>Huge community (and great documentation)</li> <li>Works</li> </ul> <p>Finally, you can overcome many if not all the downsides by writing good code you'd write in any other language. You can write solid, secure and good smelling code in PHP, which many times will run faster and be easier to host and to scale than many alternatives.</p> http://stackoverflow.com/questions/309300/defend-php-convince-me-it-isnt-horrible/309377#309377 11 Answer by Mischa Kroon for Defend PHP; convince me it isn't horrible Mischa Kroon 2008-11-21T16:32:34Z 2008-11-21T16:39:29Z <p>The huge pile of</p> <ul> <li>open source projects that run on it. <li>people who use it <li>jobs to find <li>cheap hosting providers that support it <li>... </ul> <p>But for the language itself, it's sort of dynamic with decent performance? (best I can do, sorry PHP)</p> http://stackoverflow.com/questions/309300/defend-php-convince-me-it-isnt-horrible/309383#309383 24 Answer by Noah Goodrich for Defend PHP; convince me it isn't horrible Noah Goodrich 2008-11-21T16:34:46Z 2008-11-21T16:34:46Z <p>Any tool, in the hands of an amateur, can become dangerous. So I wouldn't blame PHP for what people do or don't do with it, despite its apparent flaws.</p> <p>PHP can be used to develop secure and robust web apps that are just as well designed as anything written in .NET, as long as you know what you're doing.</p> <p>Perhaps the equally relevant question to ask is what language would you consider superior?</p> <p>In my office we use PHP because of the low overhead in getting started with it because we use a LAMPP stack where everything FOSS. Running on a Microsoft platform would run my company into the ground. So I guess one valid reason that companies go with PHP is because its FOSS.</p> <p>The other reason that I've seen others point out is that it gets used by many individuals for their own personal projects, and as a way for them to enter the world of web programming. I personally don't see anything wrong this. Everyone has to start somewhere, and no one is born writing beautiful code. Its something that we all grow into.</p> <p>I think that other languages discourage what you might classify as bad practices by their very nature which is something that PHP doesn't do very well, but I wouldn't discount the language out of hand. </p> http://stackoverflow.com/questions/309300/defend-php-convince-me-it-isnt-horrible/309386#309386 49 Answer by Brian C. Lane for Defend PHP; convince me it isn't horrible Brian C. Lane 2008-11-21T16:36:01Z 2008-11-21T16:36:01Z <p>In addition to the above, php's documentation kicks ass. <a href="http://www.php.net/rand" rel="nofollow">http://www.php.net/rand</a> and you go right to the doc page for it, as well as tons of user contributed notes.</p> <p>PHP is by no means perfect, but it does get the job done and its Class system is better than some of the competition.</p> http://stackoverflow.com/questions/309300/defend-php-convince-me-it-isnt-horrible/309406#309406 1 Answer by rotard for Defend PHP; convince me it isn't horrible rotard 2008-11-21T16:42:31Z 2008-11-21T16:42:31Z <p>Probably the same reason people like VB. It looks easy for a newbie to jump into. Then, once you learn a little bit about it, you want to protect the time investment you spent to learn it, which can translate into refusing to learn another language, or flaming people on the internet who disagree with you</p> http://stackoverflow.com/questions/309300/defend-php-convince-me-it-isnt-horrible/309420#309420 10 Answer by TravisO for Defend PHP; convince me it isn't horrible TravisO 2008-11-21T16:45:34Z 2008-11-24T23:36:31Z <p>Every point you make about PHP is correct, but the alternatives aren't silver bullets either. </p> <p>In strongly typed languages, such as C#, you spend a lot of time casting your data types for use in various objects. In 99.999% of apps written, the efficiency that strict data typing offers doesn't matter. Most of us are writing CRUD apps, and the only bottleneck is poorly written SQL code.</p> <p>PHP has it's merits for the some of the reasons why VB6 was so popular (well without the stellar IDE), anybody with a head on their shoulders can attempt to write an application, and do it fairly quickly. Good devs can write good apps, bad devs write bad apps, but at least they still work.</p> <p>You need to spend less time worrying about camel case vs underscore separated functions and provide solutions to your customers (or company). Excuse the lure of a car analogy, but I really don't want my mechanic telling me how my Nissan values are coated in iodized aluminum or plated alumnium. In the grand scene of things, PHP is far from a bad language. It fills a very important niche that fuels a large part of the web. And somebody who is focusing on trivial things to decide their platform are worrying about unimportant things.</p> <p>I code in both C# ASP.NET and PHP, but when I start personal projects, I almost always choose PHP because the ROI of my time is much greater. The only time I prefer C# is for desktop applications (for obvious reasons).</p> http://stackoverflow.com/questions/309300/defend-php-convince-me-it-isnt-horrible/309474#309474 2 Answer by OIS for Defend PHP; convince me it isn't horrible OIS 2008-11-21T17:00:59Z 2008-11-21T17:00:59Z <p>PHP has functions in C which are fast if you know how to use them. Used correctly they can do many things faster than python and perl.</p> <p>PHP scales very easily by optimizing cache or adding more servers. </p> <p>And once you've automated something like loading files with classes or set up a template system, building on top of it is very fast. PHP OOP is very easy to automate things fast and securely.</p> http://stackoverflow.com/questions/309300/defend-php-convince-me-it-isnt-horrible/309622#309622 259 Answer by Peter Bailey for Defend PHP; convince me it isn't horrible Peter Bailey 2008-11-21T17:55:32Z 2008-12-16T04:19:24Z <p>I'll take a stab at responding to each of your bullet points</p> <blockquote> <p>PHP has inconsistent naming of built-in and library functions. Predictable naming patterns are important in any design.</p> </blockquote> <p>I both love and hate this topic. Because at its core, this issue is correct. Why are some bi-word function split with an underscore, and some aren't? Why do needle and haystack parameters swap positions in the argument signature sometimes? It's ridiculous. But at the end of the day... does this really matter? My IDE with intellisense and php.net just a browser click away, this is just plain not that big of a deal. Is it a negative against PHP as a language? Yes. Does it hinder my ability to be an effective programmer? No.</p> <blockquote> <p>The PHP developers constantly deprecate built-in functions and lower-level functionality. A good example is when they deprecated pass-by-reference for functions. This created a nightmare for anyone doing, say, function callbacks.</p> </blockquote> <p>Personally, I think this is not a good point. Deprecation is necessary to the evolution of a language, especially one that has as much kruft as PHP does. PHP gets a lot of flak for "making it easy to be a bad programmer*" but at the same time, the PHP group also gets in trouble when they try to remove stupid constructs from the language, such as call-time pass-by-reference. Eliminating call-time pass-by-reference was one of the best moves they ever made. The was no easier way for a novice developer to shoot themselves in the foot than with this "feature".</p> <blockquote> <p>A lack of consideration in redesign. The above deprecation eliminated the ability to, in many cases, provide default keyword values for functions. They fixed this in PHP 5, but they deprecated the pass-by-reference in PHP 4!</p> </blockquote> <p>I don't think there's a general lack of consideration at all, I think you just got stung by this particular change and have been left with a sour taste in your mouth. Language changes are often known months if not years ahead of time. A migration guide was provided for the move from 4 to 5, and the version differences are documented in the manual. Call-time pass-by-reference was a horrible "feature" and doesn't give the developer any expressive power they can't get by other means. I'm glad it is gone (along with other crap like magic quotes)</p> <blockquote> <p>Poor execution of name spaces (formerly no name spaces at all). Now that name spaces exist, what do we use as the dereference character? Backslash! The character used universally for escaping, even in PHP!</p> </blockquote> <p>I have mixed feelings about this. Part of me thinks "who cares, character escaping has no meaning outside of a string anyway", and part of me thinks "surely they could use something better". But could they? I don't know, I'm not a developer for the Zend parser. Is it a huge oversight that until 5.3 PHP never had namespaces at all? Yes, absolutely.</p> <blockquote> <p>Overly-broad implicit type conversion leads to bugs. I have no problem with implicit conversions of, say, float to integer or back again. But PHP (last I checked) will happily attempt to magically convert an array to an integer.</p> </blockquote> <p>I think it's ok to disagree with how PHP does this, but disagree that it makes the language "bad". But ask me how much I want to sit in this topic and argue about dynamic vs static typing. (P.S. I don't, <em>at all</em>) For the record: PHP will issue an E_WARNING level error when the type of an argument matters and cannot by solved by coercion.</p> <blockquote> <p>Poor recursion performance. Recursion is a fundamentally important tool for writing in any language; it can make complex algorithms far simpler. Poor support is inexcusable.</p> </blockquote> <p>PHP is a DSL for the web. I've been doing it full-time for 8 years and have maybe used recursion 4 or 5 times, usually for some type of annoying directory or XML traversal. It's just not a pattern that is needed for web development that often. I'm not excusing the slow performance, but this is an academic issue far more than it is a production issue. If you need really powerful recursive performance, PHP is already the wrong language for you.</p> <blockquote> <p>Functions are case insensitive. I have no idea what they were thinking on this one. A programming language is a way to specify behavior to both a computer and a reader of the code without ambiguity. Case insensitivity introduces much ambiguity.</p> </blockquote> <p>I totally 100% agree with this.</p> <blockquote> <p>PHP encourages (practically requires) a coupling of processing with presentation. Yes, you can write PHP that doesn't do so, but it's actually easier to write code in the incorrect (from a sound design perspective) manner.</p> </blockquote> <p>*Hmmm, this topic sounds desperately familiar...</p> <p>But seriously, I find it remarkable that people will complain about a language that will absolutely 100% let you implement any output system you want (the sheer volume and style of PHP templating systems alone speaks to this) - OR - skip all that overhead and just output directly. This does not make PHP bad at all. It's part of what makes PHP good.</p> <blockquote> <p>PHP performance is abysmal without caching. Does anyone sell a commercial caching product for PHP? Oh, look, the designers of PHP do.</p> </blockquote> <p>Do you mean bytecode caching (like an accelerator), or output caching?</p> <p>If the former, then I don't really know how much I care about this topic. Accelerators are free and easy to run. We could argue about why it isn't part of the language but in the end, I don't think it matters much.</p> <p>If you are talking about output caching then I don't know what to say to you. ANY web project with significant traffic needs caching (seed podcast #27, for example). This is not a PHP-specific issue <em>at all</em>.</p> <p>In summary, I think you consider PHP a "bad" language in a very academic fashion. And in your previous post you were probably voted down by people like me who use PHP to "get things done". </p> http://stackoverflow.com/questions/309300/defend-php-convince-me-it-isnt-horrible/309681#309681 48 Answer by jalf for Defend PHP; convince me it isn't horrible jalf 2008-11-21T18:19:24Z 2008-11-21T18:19:24Z <blockquote> <p>What is it that I'm missing about PHP? I'm seeing an organically-grown, poorly-managed mess of a language that's spawning poor programmers.</p> </blockquote> <p>Simple. The fact that poor programmers get very defensive about their language. ;) PHP is easy to learn, much easier than the alternatives, and once you've learned it, it's not exactly obvious 1) what's wrong with PHP, 2) how the alternatives are better, and 3) how to switch to, and learn, one of the alternatives.</p> <p>And perhaps the fact that, well, what alternatives do people have? ASP? That has plenty of problems on its own, from being unable to run on the majority of webservers (Apache), to some ridiculous and overengineered design choices on its own (webforms? Viewstate? AJAX where your asynchronous" requests are intercepted and run <em>sequentially</em>?) Ruby on Rails? Well, perhaps, except how many webservers support it again? It's not exactly easily approachable at the moment. And it's slow. So perhaps PHP's "strength" is really that no <em>good</em> alternative exists. At least this is why I stay away from all web programming when at all possible. PHP sucks, and I'm not too keen on any of the alternatives either.</p> <p>PHP has so many fundamental problems that it's not even funny. From the lack of unicode support, to the many implicit type conversions which often lead to unexpected security holes, to the complete mixing of presentation and... everything else, or to the default database module which doesn't (last I checked) use parametrized queries. We're talking about a language made for two things, database access and generating HTML, and which is terrible at both.</p> <p>It's just a nasty mess, a language designed by people who aren't qualified, or able, to design a language. ;)</p> http://stackoverflow.com/questions/309300/defend-php-convince-me-it-isnt-horrible/310196#310196 11 Answer by Richard Levasseur for Defend PHP; convince me it isn't horrible Richard Levasseur 2008-11-21T21:06:23Z 2008-11-21T21:06:23Z <p>I wouldn't say PHP is a bad language, but an ugly language. There are many impoverishing things about it compared to other languages.</p> <p>Inconsistent function names, no name spaces, subtle, frustrating type conversions, poor iterators, and lacking lots of cool features other languages have (threads, python generators, python object model, perl ~=, java object persistence layers, inherent pass by reference for non-primitives, etc).</p> <p>However, I would argue that a major reason it is so popular, so useful, is precisely because it doesn't have those features. </p> <p>An example: How many times have you seen a loop over database results several times in a web app? Loop to fetch from the database, loop to convert it to application objects, loop to apply special formatting, loop for a few hacks, loop to display. And in php, you're probably copying the array for each loop.</p> <p>Thats a lot of looping. If you use generators, you can preserver all that looping and eliminate all of it. But now you've introduced a fairly complicated concept, one that needs to be understood fully (much like threading must be).</p> <p>While I don't mean to speak ill of web developers, the majority of them aren't the cream of the crop. Introducing complexity like a generator will at best make no difference, at worst, do more harm than good.</p> <p>With that said, it has some good reasons for sticking around: its very easy to understand, its pretty much everywhere, and it has strong library support. Those mean a lot when you need to make something and make it fast, which almost webapps need to do.</p> <p>While you say that it promotes bad design and coding, I would say thats more the nature of web development. Too many times I've seen something simple have crazy, from a software perspective, requests made of it. To the clients, these request aren't crazy. They want VP's to not require validation, or anonymous access to be moderated, or a certain use case to display a special message, or some strange integration for a specific use-case.</p> <p>My point is, a web app is custom glue code. It glues everything together, just how you want it, and its going to be ugly after a few iterations.</p> <p>Anyways, my flight is about to board, so in a nutshell: PHP isn't a bad language, but its impoverishing when you need to do some really neat things the right way.</p> http://stackoverflow.com/questions/309300/defend-php-convince-me-it-isnt-horrible/310362#310362 0 Answer by nerdabilly for Defend PHP; convince me it isn't horrible nerdabilly 2008-11-21T22:03:19Z 2008-11-21T22:03:19Z <p>Like so many other things in this world, being the most popular, most widely used, and most readily available does not mean that a product is of the highest quality. </p> <p>A big part of the lure of PHP is its availability and ubiquitousness. </p> <p>as I posted in a comment above, my biggest complaint with PHP was its documentation. The organization and quantity was fine, but I found that things were not explained well, in a way that a newbie or non-programmer would understand, and that the examples would only add to the confusion by using shortcuts, trickery, and esoteric functions. </p> http://stackoverflow.com/questions/309300/defend-php-convince-me-it-isnt-horrible/310527#310527 0 Answer by AnonJr for Defend PHP; convince me it isn't horrible AnonJr 2008-11-21T23:16:59Z 2008-11-21T23:16:59Z <p>I'm in a similar spot, and while there's a lot I don't like about it, I'll probably switch to using PHP as my primary development language because its one of the few that lets me not worry about if its a Widows Server or if its a Linux server etc.</p> <p>But then again, I use Classic ASP - what do I know? :p</p> http://stackoverflow.com/questions/309300/defend-php-convince-me-it-isnt-horrible/310651#310651 25 Answer by ceejayoz for Defend PHP; convince me it isn't horrible ceejayoz 2008-11-22T00:50:45Z 2008-11-22T00:50:45Z <blockquote> <p>PHP has inconsistent naming of built-in and library functions. Predictable naming patterns are important in any design.</p> </blockquote> <p>Yes, this is annoying. However, anyone who's doing serious development in PHP is going to have them memorised quickly, and what's not memorised is very easily found in PHP's online documentation. I don't feel that this inconsistency slows me down at all.</p> <blockquote> <p>The PHP developers constantly deprecate built-in functions and lower-level functionality. A good example is when they deprecated pass-by-reference for functions. This created a nightmare for anyone doing, say, function callbacks.</p> </blockquote> <p>Only if they upgrade unwisely. PHP4 didn't end-of-lifed until three years after PHP*5* was released. Three years to transition to a new version is plenty of time to fix things like that, and deprecating crappy ways of doing things is important to the rational evolution of a language.</p> <blockquote> <p>Poor execution of name spaces (formerly no name spaces at all). Now that name spaces exist, what do we use as the dereference character? Backslash! The character used universally for escaping, even in PHP!</p> </blockquote> <p>Backslash is used universally for escaping <em>within strings</em>. It has no meaning outside of one. Again, this is the sort of criticism that is meaningless after a few days using the language.</p> <blockquote> <p>Overly-broad implicit type conversion leads to bugs. I have no problem with implicit conversions of, say, float to integer or back again. But PHP (last I checked) will happily attempt to magically convert an array to an integer.</p> </blockquote> <p>I can state categorically that I have never, ever had a problem caused by accidentally turning an array into an integer.</p> <blockquote> <p>Poor recursion performance. Recursion is a fundamentally important tool for writing in any language; it can make complex algorithms far simpler. Poor support is inexcusable.</p> </blockquote> <p>Can't personally speak to that - I haven't seen or performed benchmarks. I don't use recursion much at all, though.</p> <blockquote> <p>Functions are case insensitive. I have no idea what they were thinking on this one. A programming language is a way to specify behavior to both a computer and a reader of the code without ambiguity. Case insensitivity introduces much ambiguity.</p> </blockquote> <p>PHP'll throw an error if you try to redefine an existing function, so what's the risk here? What ambiguity is introduced here - can you offer any concrete examples?</p> <blockquote> <p>PHP encourages (practically requires) a coupling of processing with presentation. Yes, you can write PHP that doesn't do so, but it's actually easier to write code in the incorrect (from a sound design perspective) manner.</p> </blockquote> <p>One can write crappy code in C++ or Java, too. I find the ability to do this a positive feature of PHP, too - if I were to choose a programming language to teach a six year old basic programming, it'd probably be PHP. Yes, the ability for anyone to pick up <em>some</em> PHP has led to a lot of bad code out there, but I consider more people having the opportunity to learn to code a good thing.</p> <blockquote> <p>PHP performance is abysmal without caching. Does anyone sell a commercial caching product for PHP? Oh, look, the designers of PHP do.</p> </blockquote> <p>Your last, and least compelling. <strong>So what?</strong> There are a variety of <em>non</em>-commercial caching products for PHP. You have options, and there's no reason the maintainers of PHP shouldn't be allowed to try to profit off their expertise. You're best off paying for a Windows and Visual Studio license to develop in .NET, but no one rational bashes the platform based on that.</p> <p>These are not your reasons for disliking PHP. These are your excuses for not even giving it a chance.</p> http://stackoverflow.com/questions/309300/defend-php-convince-me-it-isnt-horrible/310682#310682 2 Answer by artificialidiot for Defend PHP; convince me it isn't horrible artificialidiot 2008-11-22T01:18:05Z 2008-11-22T01:18:05Z <p>You can find a php job very easily, even if you are not competent, thanks to its ubiquity. Your non-programmer employer most likely expect you to be replaceable in case. But you can thwart their expectations by writing tricky and horrible code (as in type coercion) which you get to maintain longer than they would keep you otherwise. Few languages helps you write as bad code better than php.</p> http://stackoverflow.com/questions/309300/defend-php-convince-me-it-isnt-horrible/310768#310768 7 Answer by Ali for Defend PHP; convince me it isn't horrible Ali 2008-11-22T02:32:45Z 2008-11-22T02:45:13Z <p>A couple of people at my university were talking about how bad PHP is recently.</p> <p>My opinion is that anyone with any knowledge of other programming languages shouldn't even be wasting their time talking about how bad PHP is, they just should use something better and forget about it.</p> <p>However, I also take slight issue with completely writing off PHP as I only entered my programming career through PHP.</p> <p>This may sound absolutely mad, but to me PHP almost fits into the same category as C and Lisp as being a language that more or less nails what it is trying to do in a fairly in a fairly fundamental way.</p> <p>My explanation to them was simply: "<strong>PHP went down the simplicity road from C and I think it stopped at more or less the right place.</strong>"</p> <p>Edit: When you look at the bad code from PHP programmers, you are looking at the code from people who didn't graduate to bigger things, is it really surprising that they write poorer code? Even for the people who did move on, you are still looking at their first programs, before they learned better programming ideas. I can tell you, my PHP code written after learning Lisp is indistinguishable from the code I wrote a year ago in PHP.</p> http://stackoverflow.com/questions/309300/defend-php-convince-me-it-isnt-horrible/310783#310783 -7 Answer by Mark Stock for Defend PHP; convince me it isn't horrible Mark Stock 2008-11-22T02:44:46Z 2008-11-22T02:44:46Z <p>I am not going to convince you of anything, so let me put it this way...</p> <p><strong>Microsoft Word</strong> is horrible. But, why are there lots of people with a PC running Windows running Microsoft Office using Word?</p> <p><strong>PHP</strong> is horrible. And, there are lots of people with a PC running Linux running Apache using PHP.</p> <p>Defend Microsoft Word; convince me it isn't horrible. Lots of people use it and it's horrible, but it's usable and lots of people use it.</p> http://stackoverflow.com/questions/309300/defend-php-convince-me-it-isnt-horrible/310916#310916 3 Answer by ehassler for Defend PHP; convince me it isn't horrible ehassler 2008-11-22T05:32:43Z 2008-11-22T05:32:43Z <p>Only call-time pass by reference is deprecated. So you can <code>function f(&amp; $var)</code> and when you call <code>f($a)</code> then <code>$var</code> and <code>$a</code> are the same in the symbol table. But you can't take <code>function h($var)</code> and <code>f(&amp; $a)</code> without getting the warning. But even if it where, you can always use an object since they're always passed-by-reference. </p> <p>I'm not sure how call-time pass-by-reference being deprecated causes problems for function callbacks: perhaps you are thinking of callbacks from a C++ perspective. In PHP you can call a global function by it's name such as <code>$fname = 'func_name'; $fname()</code>. There's also <code>call_user_func_array()</code> and the reflection classes to call functions and methods. </p> <p>The inconsistent function naming and argument order is a pain, but an IDE can mitigate much of that unpleasantness. That said, I still get my <code>$needle</code> and <code>$haystack</code> out of order more often than I care to admit. </p> <p>As for performance, let me say that I've never used PHP without the <code>APC</code> extension for caching. Even then, function calls and some of the language magic can really start to add up and bog down performance. But 99.9% of the projects I do in PHP are very thin layers on top of a database. When we have projects that require more complex logic and processing, we do that in C or Java. With the PHP-Java bridge or Quercus you can easily interface Java and PHP. You can also write an extension in C or C++ for PHP. </p> <p>To your point of ambiguity, case insensitivity is not ambiguous, I bet you know exactly what will happen if you call <code>my_func()</code> versus <code>my_Func()</code>. Honestly, I don't see why you'd want there to be different behaviors for functions based on their case. Variables, I can see, especially for people using a lot of linear algebra or statistics, but PHP isn't really the language for those types of algorithms since it's slow. </p> <p>One feature that I enjoy about PHP is that it is not strictly typed. I wish its type hinting were more robust, but if you compare the number of times I’ve made errors where type checking would have caught it in PHP versus the number of times I’ve had to go through typecasting hell, well, let’s just say I like this about PHP. </p> <p>As for separating display from logic, you should check out Code Igniter or Kohana, or any of the n PHP frameworks that pride themselves on doing that.</p> http://stackoverflow.com/questions/309300/defend-php-convince-me-it-isnt-horrible/310939#310939 42 Answer by Kevin for Defend PHP; convince me it isn't horrible Kevin 2008-11-22T05:54:55Z 2008-11-22T05:54:55Z <p>Wikipedia, Facebook, Yahoo!, etc.</p> <p>Nobody cares if you think PHP is horrible. Comparing programming languages is like comparing tools: <strong>Convince me <em>hammers</em> aren't horrible!</strong> The truth is, you aren't limited to just using one language, use many languages. Choose the ones you think will best accomplish your goals.</p> http://stackoverflow.com/questions/309300/defend-php-convince-me-it-isnt-horrible/311457#311457 0 Answer by Mike Trader for Defend PHP; convince me it isn't horrible Mike Trader 2008-11-22T16:01:13Z 2008-11-22T16:01:13Z <p>Never understood the attraction of PHP. </p> <p>FastCGI is available for IIS and Apache and it has some very cool features. Do a Google search for "FastCGI — The Forgotten Treasure" for a detailed description of the context switching and multiplexing benefits of this technology.</p> <p>You can write an application for it with any language including C, VB and FreeBasic. (.BLOAT have their own 120MB run time module "solutions")</p> http://stackoverflow.com/questions/309300/defend-php-convince-me-it-isnt-horrible/311478#311478 0 Answer by Kawa for Defend PHP; convince me it isn't horrible Kawa 2008-11-22T16:16:58Z 2008-11-22T16:22:24Z <p>I like PHP. It's comfortably similar to C and fairly easy to follow, depending on the way it's combined with HTML. I recently started using it for command line utilities too, and use it on almost all my website projects.</p> <p>For comparison, last time I saw perl code I got a headache :(</p> <p>As for "spawning poor programmers", I'd like to refer to the comfortable similarity to C and note that until quite recently I was a Basic nut. Many people told me to stop using Basic, and PHP really helped getting used to the idea of using C, so it can't be <em>that</em> bad ;)</p> http://stackoverflow.com/questions/309300/defend-php-convince-me-it-isnt-horrible/311503#311503 0 Answer by Gravstar for Defend PHP; convince me it isn't horrible Gravstar 2008-11-22T16:45:01Z 2008-11-22T16:45:01Z <p>Jason,</p> <blockquote> <p>What is it that I'm missing about PHP? I'm seeing an organically-grown, poorly-managed mess of a language that's spawning poor programmers.</p> </blockquote> <p>Unfortunatelly i can't answer your question, because you're totally right in your post.</p> <p>IMO the problem is that PHP isn't actually a formal programming language but something like a toolbox for developing html "templates". It was great 10 years ago, but today they are several best choices.</p> <p>In fact PHP didn't make any futher progress since PHP3 appeared. Ok, ok they have added something similar as o.o. to Php4 and 5 ... but sorry guys this is not actually a Oriented Programming language.</p> <p>As you i have several reasons to not consider it a formal programing language as Python or Ruby or Put-here-your-prefered-programming-language does.</p> http://stackoverflow.com/questions/309300/defend-php-convince-me-it-isnt-horrible/311947#311947 6 Answer by Prajwal Tuladhar for Defend PHP; convince me it isn't horrible Prajwal Tuladhar 2008-11-23T00:25:07Z 2009-07-04T04:46:27Z <p>PHP is not horrible by any means if one consider following points:</p> <ul> <li>Google 'PHP' and PHP related stuff: one will find results more than that of any programming language</li> <li>PHP is open source and light weight</li> <li>If one uses PHP for its core purpose i.e. scripting then, one won't find any significant side-effect in the language</li> <li>Now from PHP 5, PHP can be considered as a pure Object Oriented language. There is interface, reflection, PHP Data Object (PDO) as kinda native data access layer or much like ADO.NET, type hinting and the list goes on.</li> <li>please don't compare PHP with C# and/or Java. It's just not fair. If one only compares scripting part of these languages with PHP, it's far more easier to code in PHP.</li> </ul> <p>And finally, rather than comparing languages it would be rather better to focus on using design patterns, test driven approach, object oriented doctrines and modularization concepts. Anyone can learn languages in a matter of time but once one have ideas about agile development, one can implement it in any language with ease.</p> http://stackoverflow.com/questions/309300/defend-php-convince-me-it-isnt-horrible/315942#315942 1 Answer by Ryan Smith for Defend PHP; convince me it isn't horrible Ryan Smith 2008-11-25T00:06:48Z 2008-11-25T00:06:48Z <p>PHP isn't less secure than any other language, and if you build correctly, you can build applications that are just as robust as any other web application framework.</p> <p>Some people get all wrapped around Comp Sci theory and that makes them dislike PHP. They forget that in theory there is no difference between theory and practice. In practice there is. </p> <p>The end result is what counts, and when it comes to defending PHP, I only have one word...</p> <p><strong>Wikipedia</strong></p> http://stackoverflow.com/questions/309300/defend-php-convince-me-it-isnt-horrible/316061#316061 15 Answer by staticsan for Defend PHP; convince me it isn't horrible staticsan 2008-11-25T01:03:59Z 2008-11-25T05:09:33Z <p>I think before you can be convinced that PHP is a language worth keeping around, you need to recognise that the objections you have to it are just not obstacles to people who use it everyday.</p> <p>At it's core, you have a language that provides an execution environment that is easy to setup and easy to begin to use. The language itself is highly orthogonal, which makes learning it easy. It does not come with a framework That You Must Use, or and IDE that is essential. It does not have a separate compile step. All this means you have a language that does what it does and gets out of the way. For programmers, this provides an almost blank sheet of paper to go off in whatever direction they choose to build what they need to build. The language is flexible enough that there is often a variety of ways to achieve the end-result, some better than others, but others are just one amongst equals. PHP makes things like strings and hash-tables first-class objects and provides a generous array of tools to manipulate them. There is a wide-range of built-in libraries and there is a wealth of third-party code to supplement this. In addition, it has all the tools and features to scale to massive massive websites on huge databases.</p> <p>Some of its current problems are as a result of the language being forced to "grow up" as thousands (if not millions) of developers make it do things the designers never even thought of, let alone thought possible. Fixing these requires a slow and careful migration so that you pull along the bulk of the developers. Notice that it took some effort to get people off PHP v3 in the last two years - and v6 is just around the corner!</p> <p>It is possible to write high quality code in PHP, with clean interfaces, good separation of logic and so on. The problem is that the average quality of PHP programmer does not reach that high. And you can't force them to be better -- because that simply doesn't work. They have to learn how themselves. <em>If</em> they are capable of learning. I've seen PHP programmers who are just incapable of getting beyond their current mediocre level.</p> <p>PHP has a lot of warts, but it is effective and widespread. Just don't get hung up on what it does 'wrong' -- most PHP programmers don't and don't need to.</p> http://stackoverflow.com/questions/309300/defend-php-convince-me-it-isnt-horrible/316376#316376 6 Answer by Eli for Defend PHP; convince me it isn't horrible Eli 2008-11-25T04:35:38Z 2008-11-25T04:35:38Z <p>A poor craftsman blames his tools. </p> <p>Sure, PHP has warts and it lacks fancy meta-programming and syntactic sugar. But so what? It's more than capable for most web applications, it's relatively fast, its flaws are well understood and it has virtually universal support.</p> http://stackoverflow.com/questions/309300/defend-php-convince-me-it-isnt-horrible/322533#322533 2 Answer by partoa for Defend PHP; convince me it isn't horrible partoa 2008-11-26T23:32:16Z 2008-11-26T23:32:16Z <p>Two words, It works!</p> http://stackoverflow.com/questions/309300/defend-php-convince-me-it-isnt-horrible/324089#324089 1 Answer by mike nvck for Defend PHP; convince me it isn't horrible mike nvck 2008-11-27T15:53:05Z 2008-11-27T15:53:05Z <p>For me, PHP is certainly not the best thing since sliced bread. However, unlike ASP, it tends to solve my problems.</p> http://stackoverflow.com/questions/309300/defend-php-convince-me-it-isnt-horrible/324387#324387 14 Answer by Dan for Defend PHP; convince me it isn't horrible Dan 2008-11-27T18:05:37Z 2009-01-12T15:51:50Z <p>The bottom line is that PHP is (like every other language) nothing but a tool. Every job has a tool that suits it. PHP is greatly suited for quick, agile tasks that need to be done NOW.</p> <p>In the real world, unfortunately, managers run the show. If a client needs a contact form, I can bang that out in 30 minutes using PHP (and even design it "properly" using an MVC architecture). Or, if I was a novice (and I say that in a loving way), I could wite the same form using ugly code, that works just as well.</p> <p>Now, I started hating PHP after using it for several years for a few of the reasons listed above. Mostly, I disliked it's OOP implementation and hated the fact it was case insensitive. </p> <p>As I look back on it though, I think the major problem isn't the language, but inexperienced programmers who are hired to write in it. It's the "cleaning up spilt milk" problem. About 90% of the legacy PHP code I've had to alter or maintain has been TERRIBLY written. It's not the languages fault, it's the inexperienced (or lazy) coder's fault. They took the hammer (PHP), and instead of simply driving a nail into a wall with it, they cooked spaghetti with it (successfully). </p> <p>These days, I have been writing code in VBScript and Perl (NOT by choice, but gotta make a living). After working with those two nonsensical and disheveled languages, it really put PHP into perspective for me. I MISS PHP. I didn't realize what I had till I lost it. Ever try to get the size of an array stored in a hash reference in Perl? I did. Took 2 hours and I didn't solve the problem. I was forced to do a hack. In PHP, I'd simply use count() and TA DAH! There is the size of the array (which is actually a hash in PHP but that's out of the scope of what I'm trying to say).</p> <p>Does the language need improvements? Yes. Does the language have a poor governing body? Yes. But what are it's strong points? It's pretty simple:</p> <ol> <li>EXCELLENT documentation</li> <li>Quick turn-around time for development</li> <li>A familiar, C style syntax</li> </ol> <p>So in reality, It's not the language itself that's absolutely terrible, but the ironic fact that it was designed to be so quick and dirty to develop with, that it attracts poor programmers with poor programming practices. </p> <p>It's ease of use is a double edged sword. It allows you to quickly write good code, just as easily as it allows you to quickly write bad code. So don't blame the gun, blame the guy who pulled the trigger. </p> <p>But I'll tell ya one thing, If I had a choice between writing a web app in Perl through CGI, or using PHP; I'd use PHP in a HEARTBEAT. </p> http://stackoverflow.com/questions/309300/defend-php-convince-me-it-isnt-horrible/331113#331113 0 Answer by alimack for Defend PHP; convince me it isn't horrible alimack 2008-12-01T15:05:28Z 2008-12-03T22:26:50Z <p>You really need to read <a href="http://adambosworth.net/2004/11/18/iscoc04-talk/" rel="nofollow">Adman Bosworth's talk to iscoc04</a>. or Computer Scientists vs. Developers (in Joel's book Best Software Writing vol 1).</p> <p>Other people have given a point by point rebuttal, but to take just one of your points -weak typing. Strong typing is taught as the one true way, but weakly typed languages tend to succeed in the market place - C vs Pascal etc. Java and its knock-offs are the only strongly typed languages that have succeeded.</p> <p>Type checking just isn't that useful in practice, and it gets in the way more often than it actually helps. </p> <p>Developers like PHP because it's sloppy and forgiving, Computer Scientists hate it for the same reason.</p> http://stackoverflow.com/questions/309300/defend-php-convince-me-it-isnt-horrible/332786#332786 2 Answer by Zoredache for Defend PHP; convince me it isn't horrible Zoredache 2008-12-02T01:41:29Z 2008-12-02T01:41:29Z <blockquote> <p>PHP has inconsistent naming of built-in and library functions. Predictable naming patterns are important in any design.</p> </blockquote> <p>I heard Rasmus explain this at a conference. In the beginning he simply choose to use the same function names and parameters as the underlying C libraries. If you know the underlying libraries then you know what something probably will be in PHP.</p> http://stackoverflow.com/questions/309300/defend-php-convince-me-it-isnt-horrible/338979#338979 1 Answer by jakemcgraw for Defend PHP; convince me it isn't horrible jakemcgraw 2008-12-03T22:25:16Z 2008-12-03T22:25:16Z <ul> <li>yahoo</li> <li>facebook</li> <li>flickr</li> <li>wikipedia</li> <li>wordpress</li> </ul> <p>Good enough for ya?</p> http://stackoverflow.com/questions/309300/defend-php-convince-me-it-isnt-horrible/343912#343912 1 Answer by John J for Defend PHP; convince me it isn't horrible John J 2008-12-05T13:56:45Z 2008-12-05T13:56:45Z <p>i like php, using one of the many available mvc frameworks addresses most of issues pertaining to poor programming practices. you can use zend framework or one of my personal favorites the kohana framework written exclusively for php5.</p> http://stackoverflow.com/questions/309300/defend-php-convince-me-it-isnt-horrible/350425#350425 5 Answer by lo_fye for Defend PHP; convince me it isn't horrible lo_fye 2008-12-08T18:39:09Z 2008-12-08T18:39:09Z <p>I'll start by saying "a great developer can build quality software in any language", and "there are a lot of not-great php developers"...</p> <blockquote> <p>PHP has inconsistent naming of built-in and library functions. Predictable naming patterns are important in any design.</p> </blockquote> <p>Sure, but any language that evolves runs into these kinds of issues. They're easily resolved by using an IDE such as "Zend Studio for Eclipse", which will auto-complete things for you, and hint at the right order for parameters.</p> <blockquote> <p>The PHP developers constantly deprecate built-in functions and lower-level functionality. A good example is when they deprecated pass-by-reference for functions. This created a nightmare for anyone doing, say, function callbacks.</p> </blockquote> <p>Python just launched version 3 of itself, <em>totally</em> breaking backward compatibility. At least PHP took a long time to do it, and they still support the 4.x branch that does it the old way.</p> <blockquote> <p>Poor execution of name spaces (formerly no name spaces at all). Now that name spaces exist, what do we use as the dereference character? Backslash! The character used universally for escaping, even in PHP!</p> </blockquote> <p>I agree that backslash was a WTF moment.</p> <blockquote> <p>Overly-broad implicit type conversion leads to bugs. I have no problem with implicit conversions of, say, float to integer or back again. But PHP (last I checked) will happily attempt to magically convert an array to an integer.</p> </blockquote> <p>It can be very handy sometimes, and it can bit you in the butt at other times. The key is to validate or typecast your data before you use it.</p> <blockquote> <p>Poor recursion performance. Recursion is a fundamentally important tool for writing in any language; it can make complex algorithms far simpler. Poor support is inexcusable.</p> </blockquote> <p>I've never had a problem with it... of course, I've probably only used it once a year over the past 10 years. Most small-to-medium sized web apps just aren't complicated enough to require it.</p> <blockquote> <p>Functions are case insensitive. I have no idea what they were thinking on this one. A programming language is a way to specify behavior to both a computer and a reader of the code without ambiguity. Case insensitivity introduces much ambiguity.</p> </blockquote> <p>Most people I know are case insensitive, too. They can parse ALL CAPS and all lowers, and MixEd.</p> <blockquote> <p>PHP encourages (practically requires) a coupling of processing with presentation. Yes, you can write PHP that doesn't do so, but it's actually easier to write code in the incorrect (from a sound design perspective) manner.</p> </blockquote> <p>I totally disagree, and I'm sure everyone at www.smarty.net would disagree, too. There are lots of templating systems written in/for PHP... BUT you have to have discipline when you use them. I would argue that being a good PHP developer requires more discipline than it does in many other languages specifically because PHP affords you so many opportunities to "do it your way".</p> <blockquote> <p>PHP performance is abysmal without caching. Does anyone sell a commercial caching product for PHP? Oh, look, the designers of PHP do.</p> </blockquote> <p>PHP runs a lot of sites, and most of them don't use caching. I don't think it's as 'abysmal' as you say it is.</p> <blockquote> <p>Worst of all, PHP convinces people that designing web applications is easy.</p> </blockquote> <p>That's your <strong>"worst of all"</strong> ?? I think that's a great thing. It gets more people interested in computers &amp; programming in general. It's a great "gateway language" that could lead to more hardcore languages in the future ;)</p> <blockquote> <p>designing a web application that is both secure and efficient is a very difficult task.</p> </blockquote> <p>It's a difficult task in any language.</p> <blockquote> <p>By convincing so many to take up programming, PHP has taught an entire subgroup of programmers bad habits and bad design</p> </blockquote> <p>Your premise is flawed, good sir. Convincing people to take up programming is entirely different from teaching bad habits &amp; bad design. Either of those things can and does happen with any language.</p> <blockquote> <p>It's given them access to capabilities that they lack the understanding to use safely.</p> </blockquote> <p>How many Americans own guns? How many of them have had "firearm safety" training? How many of them think it's their right to own a gun, regardless? It's up to the person to understand the safety requirements of the tools they choose to use. It's also up to their employers to hire people who are trained &amp; certified.</p> <blockquote> <p>This has led to PHP's reputation as being insecure.</p> </blockquote> <p>The sheer volume of "php programmers" has helped that, too. I'm sure the percentage of python &amp; ruby programmers who "suck" is similar to the percentage of php programmers who suck... it's just that there are so many more php programmers, that the same percentage yields a much higher volume. Of course, it also means there are more awesome php programmers... they're just harder to find floating around in a sea of n00bz.</p> <blockquote> <p>What is it that I'm missing about PHP? I'm seeing an organically-grown, poorly-managed mess of a language</p> </blockquote> <p>Ahhh, organically-grown. So ripe. So tasty. I think you've hit the nail on the head right there. As soon as a fad hits the net, there are 10 PHP classes for accessing it, modifying it, and remixing it into your own monkey. Some suck, some are great. Either way they're there for you to play with, on Day Zero, and that's fun and exciting. PHP is nothing if not all about Fun &amp; Exciting.</p> http://stackoverflow.com/questions/309300/defend-php-convince-me-it-isnt-horrible/370403#370403 2 Answer by Steve for Defend PHP; convince me it isn't horrible Steve 2008-12-16T03:40:03Z 2008-12-16T03:40:03Z <p>It does a good job making it easy to create dynamic markup. I'd rather read naive PHP rendering code than something where all the markup is locked up in non-syntax-highlighted strings in print statements.</p> <p>It performs well in a default install, in contrast to most other things.</p> http://stackoverflow.com/questions/309300/defend-php-convince-me-it-isnt-horrible/385664#385664 1 Answer by jerebear for Defend PHP; convince me it isn't horrible jerebear 2008-12-22T06:23:09Z 2008-12-22T06:23:09Z <p>I'm not at all a trained programmer. I took Java classes and code regularly in AS 2,3 and PHP.</p> <p>I did, however, program lots of things in Basic 20 years ago so i'm at least somewhat a veteran.</p> <ol> <li>PHP was easy to learn and feel like I did something useful.</li> <li>PHP has a huge community that helped me grow as a programmer.</li> <li>After building x number of apps, I no longer cared about "doing something useful" I cared about doing the same useful things "better" and more "elegantly" and PHP gave me enough rope to hang myself or validate my feelings of being a decent programmer.</li> </ol> <p>I don't prefer PHP to anything else as I only have a limited knowledge of other items. But I do like PHP because I now know the difference between a good programmer and a bad programmer and I wouldn't have this experience or knowledge if I wasn't allowed to be a bad programmer first.</p> http://stackoverflow.com/questions/309300/defend-php-convince-me-it-isnt-horrible/402353#402353 7 Answer by Almost Anonymous for Defend PHP; convince me it isn't horrible Almost Anonymous 2008-12-31T05:20:40Z 2008-12-31T05:20:40Z <blockquote> <p>PHP has inconsistent naming of built-in and library functions. Predictable naming patterns are important in any design.</p> </blockquote> <p>PHP exposes the function signatures of all the low-level libraries that it uses. Do you make this same complaint about C or C++? You should because those are the same function calls and libraries. You have the freedom to develop whatever abstractions you want over top of these low-level calls -- you aren't limited a specific high-level toolkit.</p> <blockquote> <p>The PHP developers constantly deprecate built-in functions and lower-level functionality. A good example is when they deprecated pass-by-reference for functions. </p> </blockquote> <p>They depreciated <em>call time</em> pass-by-reference which no other language has ever had. Regular pass-by-reference still exists and always will. I feel bad for the PHP developers, they try and improve the language and <em>still</em> get dumped on because some people don't know how to read.</p> <blockquote> <p>Poor execution of name spaces (formerly no name spaces at all). Now that name spaces exist, what do we use as the dereference character? Backslash! The character used universally for escaping, even in PHP!</p> </blockquote> <p>Agreed. But that pain hasn't even been released yet. Lets hope they change their mind. If anything, this particular issue has got me looking into alternative languages. But I have a lot good object-oriented code written in PHP that it's hard to change.</p> <blockquote> <p>Overly-broad implicit type conversion leads to bugs. I have no problem with implicit conversions of, say, float to integer or back again. But PHP (last I checked) will happily attempt to magically convert an array to an integer.</p> </blockquote> <p>I've got hundreds of thousands of lines of code in PHP and I don't find the implicit conversions to be a problem. It will not happily attempt to magically convert an array to an integer (unless you explicitly cast it).</p> <blockquote> <p>Poor recursion performance. Recursion is a fundamentally important tool for writing in any language; it can make complex algorithms far simpler. Poor support is inexcusable.</p> </blockquote> <p>I'll give you this one; but if you're written complex algorithms in PHP then you're using the wrong tool -- plain and simple. PHP scripts aren't designed to run for long periods (in fact, the shorter the better for responsiveness). This is like complaining that you SUV uses to much gas or your Smartcar doesn't have enough room for 2x4's.</p> <blockquote> <p>Functions are case insensitive. I have no idea what they were thinking on this one. A programming language is a way to specify behavior to both a computer and a reader of the code without ambiguity. Case insensitivity introduces much ambiguity.</p> </blockquote> <p>They are case-insensitive because HTML tags were, at one time, case-insensitive. But your argument is stupid. If functions are case-sensitive, you're still introducing ambiguity: now you have a function named bob() and Bob() that do two entirely different things. In PHP, that sort of madness isn't allowed. If you want consistency in naming, be consistent. PHP doesn't stop you.</p> <blockquote> <p>PHP encourages (practically requires) a coupling of processing with presentation. Yes, you can write PHP that doesn't do so, but it's actually easier to write code in the incorrect (from a sound design perspective) manner.</p> </blockquote> <p>This is entirely wrong. It does not practically require coupling processing and presentation. I've been coding in PHP for decades and while I did start by making them together (everybody did -- I came from classic ASP which does the same thing). </p> <p>I think of PHP's functionality in this regard as the same as Python's immediate mode. You can fire up Python in a shell and just start typing commands and getting results. PHP is a web based languages, so this is it's equivalent of that functionality. When I need to quickly test something, I can bang out a quick script instantly and don't require bringing in a big framework (as I would with any other language) to get a result.</p> <blockquote> <p>PHP performance is abysmal without caching. Does anyone sell a commercial caching product for PHP? Oh, look, the designers of PHP do.</p> </blockquote> <p>Abysmal? Please. Take your exaggerations elsewhere. PHP is plenty fast enough without caching for 99% of what it's used for. For that remaining 1%, there are plenty of free code caches available (I use e-accelerator) and it will be included as standard in PHP6.</p> <p>Are we done with this tired topic now?</p> http://stackoverflow.com/questions/309300/defend-php-convince-me-it-isnt-horrible/402407#402407 1 Answer by MarkR for Defend PHP; convince me it isn't horrible MarkR 2008-12-31T06:23:59Z 2008-12-31T06:23:59Z <p>PHP has many drawbacks, if you think this is a problem, don't use it.</p> <p>I was aware of these and used it anyway for some projects. In practice, problems don't actually prevent the writing of good code, they simply make it very slightly harder. And there are a lot of workarounds.</p> <p>I don't get your issue about function references; PHP does not support anonymous functions therefore function references are irrelevant, just call functions by name which a callback can do (No, really, create_function just creates a named function with a dynamic name. Last time I checked there was no way to deallocate these).</p> <p>PHP is, by and large, so stupid that it forces you to think about how things are actually going to be done rather than relying on some underlying magic (e.g. all the voodoo from ASPNET) to "just work", e.g. sessions aren't automatic and implicitly available, you need to start them.</p> <p>This can be a good thing as it means that all of the things you want to do, you have to actually do.</p> http://stackoverflow.com/questions/309300/defend-php-convince-me-it-isnt-horrible/599593#599593 1 Answer by raspi for Defend PHP; convince me it isn't horrible raspi 2009-03-01T10:15:27Z 2009-03-01T10:15:27Z <p>PHP's one of the biggest problems are novices who can't take the time to do validation etc and this leads to security problems which causes bad imago for PHP in the long run. It's a bit too easy. In one forum there were same time topics titled "Python: How I can handle errors?" and "PHP: How I can hide errors?". Pretty much sums it up. People just glue PHP apps together and then go with it.</p> <p>As a PHP programmer and hosting provider myself for 8+ years I'd say PHP's good points are it's vast collection of libraries and classes and that it's fast. I can run hundreds of small pretty busy sites compared to Java based memory and CPU hogs. I've looked into Django and Ruby on Rails but libraries what you need just aren't there.</p> <p>I've also seen that PHP is fading but frameworks like Symphony and Zend Framework may be these future saviours of PHP.</p> http://stackoverflow.com/questions/309300/defend-php-convince-me-it-isnt-horrible/669594#669594 1 Answer by martani_net for Defend PHP; convince me it isn't horrible martani_net 2009-03-21T17:03:27Z 2009-03-21T17:03:27Z <p>This is what is said in the book XSS attacks (syngress) by : Jeremiah Grossman -<br /> Robert “RSnake” Hansen - Petko “pdp” D. Petkov - Anton Rager</p> <blockquote> <p><strong>Another nasty thing that can be performed by CSRF is Hypertext Preprocessor (PHP) include attacks. PHP is a programming language that has increased in popularity over the last several years. Still, while it is an extremely useful and widely used programming language, it also tends to be adopted by people who have little or no knowledge of security</strong></p> </blockquote> <p>so if php is that simple, it would be a big problem since everyone will just mess up with things on the wild!</p> http://stackoverflow.com/questions/309300/defend-php-convince-me-it-isnt-horrible/679978#679978 1 Answer by Fire Crow for Defend PHP; convince me it isn't horrible Fire Crow 2009-03-25T02:08:05Z 2009-03-25T02:16:52Z <p>The above questions are exactly why I like it. Every single reason! </p> <p>Every point in your post is about how PHP will not organize your code for you. </p> <p>I'm proactive, and I need a level of organization no code will give me out of the box. I'd rather a language that stays out of my way and let's me enforce good program design with actual design, like pencil and paper planning design.</p> <p>And as for teaching beginners bad habbits. you can't prevent bad habits from the language level nor can you implement good design from the language level.</p> http://stackoverflow.com/questions/309300/defend-php-convince-me-it-isnt-horrible/856419#856419 1 Answer by Babiker for Defend PHP; convince me it isn't horrible Babiker 2009-05-13T06:40:07Z 2009-05-13T06:40:07Z <p>PHP doesn't need defending; why should I? ;)</p> http://stackoverflow.com/questions/309300/defend-php-convince-me-it-isnt-horrible/972999#972999 2 Answer by Bryan Waters for Defend PHP; convince me it isn't horrible Bryan Waters 2009-06-09T23:23:23Z 2009-06-09T23:23:23Z <p>1) It's Free. 2) It's easier to maintain then PERL</p> http://stackoverflow.com/questions/309300/defend-php-convince-me-it-isnt-horrible/973020#973020 0 Answer by SoulieBaby for Defend PHP; convince me it isn't horrible SoulieBaby 2009-06-09T23:30:30Z 2009-06-09T23:30:30Z <p>Coz all the chicks 'digg' it? LOL no, seriously, the (www) world would be a very boring assed place if PHP wasn't around.</p> <p>PHP is an exceptionally good language, if you know how to use it properly. Just because you don't snap your fingers and wait for the computer to build the code for you, doesn't make it a horrible language. PHP makes you think, makes you work and makes you learn. I absolutely love it and have no idea what I would've done without it.. :)</p> http://stackoverflow.com/questions/309300/defend-php-convince-me-it-isnt-horrible/1040611#1040611 1 Answer by Robert DeBoer for Defend PHP; convince me it isn't horrible Robert DeBoer 2009-06-24T19:56:36Z 2009-06-24T21:36:57Z <p>I know this is probably dead and gone, but I cannot resist. <br /><br /> Something that needs to be remembered, and was briefly mentioned beforehand, is that you cannot compare PHP to just any language. People tend to use the term "programming language" loosely without giving it much thought sometimes I think. While all languages could be grouped as a "programming language" in a broad sense, not all "programming languages" are equal (Yes - an owl and a ostrich are both birds,but they certainly are very different for different environments).<br /><br /> A language is designed to solve a particular problem: Basic was created to program hobby computers back in the day, PHP was created to make web pages,JavaScript to help with Java Applets in the Netscape Browser. Each one was created with a different purpose in mind, and so has different characteristics to meet that problem, and operates in a different environment.<br /><br />Remember, PHP was designed in the beginning to be a simple language for making web pages, nothing else. So it is not going to have the same features of a language such as C++ or Basic that was designed for computer programming, or JavaScript for client side web scripting. Yes, compare PHP to Ruby on Rails, Python, ASP/ASP.NET, but don't compare it broadly to all the other languages when they all were not created for the same purpose.</p> http://stackoverflow.com/questions/309300/defend-php-convince-me-it-isnt-horrible/1047573#1047573 -1 Answer by SarmenHB for Defend PHP; convince me it isn't horrible SarmenHB 2009-06-26T06:04:17Z 2009-06-26T06:04:17Z <p>in my opinion. </p> <p>i love it because the code is updated very frequently by the general public rather than employees of a company (who can care less).</p> <p>one language i really hate is asp,asp.net etc.. anything made by microsoft is garbage. the code that visual studio generates is a mess of blob. and since it forcefully operates on a windows makes it even more insecure and crappy.</p> <p>php is universal. it can run from a window,linux,osx</p> <p>wherease asp,asp.net only run on windows.</p> http://stackoverflow.com/questions/309300/defend-php-convince-me-it-isnt-horrible/1124091#1124091 -4 Answer by eyelidlessness for Defend PHP; convince me it isn't horrible eyelidlessness 2009-07-14T08:03:16Z 2009-07-14T08:03:16Z <p>I'm surprised that the thing which infuriates me the most about PHP doesn't seem to be mentioned in the question or any of the answers: <strong>its scoping model</strong>.</p> <p>It's <em>infuriating</em> to me that this doesn't work:</p> <pre><code>function outer() { $foo = 'bar'; inner(); } function inner() { doSomethingWith($foo); } </code></pre> <p><code>$foo</code> has not been garbage-collected—for chrissake it's still available after <code>inner()</code>, within <code>outer()</code>. It's technically still available <strong>within</strong> <code>inner()</code> if calling <code>inner()</code> triggers an error! Why should it need to be explicitly passed as an argument, or worse part of the global scope, to be accessible within <code>inner()</code>?</p> http://stackoverflow.com/questions/309300/defend-php-convince-me-it-isnt-horrible/1124160#1124160 1 Answer by nightingale2k1 for Defend PHP; convince me it isn't horrible nightingale2k1 2009-07-14T08:28:58Z 2009-07-14T08:28:58Z <ol> <li>you can did things faster in php than in other languages (say java, asp, etc). I know that some people write bad codes with php (lots of people) but afaik some of them are not computer science people. they just common people and they can learn php easily without bothering about OOP complexity. </li> <li>php is so small .. you can have portable one as well (use xampp for example compare to tomcat,glasfish etc that need java to be installed first and then set path etc ... ). </li> <li>numbers will speak louder :D ... there are lots of people using php than other languages.</li> </ol> <p>I did my projects since 5 year ago using php and my skill was improved by reading some codes and using frameworks. I also using groovy and grails for web applications development since my client require me to use java ;)</p> <p>how about "asking" google trends ?<a href="http://www.google.com/trends/viz?q=php,+asp.net,+jsp,+ruby,+rails,+python,+django&amp;date=all&amp;geo=all&amp;graph=weekly%5Fimg&amp;sort=0&amp;sa=N" rel="nofollow">link text</a></p> <p><img src="http://www.google.com/trends/viz?q=php,+asp.net,+jsp,+ruby,+rails,+python,+django&amp;date=all&amp;geo=all&amp;graph=weekly%5Fimg&amp;sort=0&amp;sa=N" alt="alt text" /></p> <p>PHP still loved by most people... asp.net comes next.</p> http://stackoverflow.com/questions/309300/defend-php-convince-me-it-isnt-horrible/1138876#1138876 3 Answer by capfu for Defend PHP; convince me it isn't horrible capfu 2009-07-16T16:48:21Z 2009-07-16T16:48:21Z <p>I don't object to the statement that PHP is horrible. It has a lot of problems which were all mentioned in the question...</p> <p>...BUT</p> <ul> <li>has all the features you'd expect from a C/C++ heritage (it's very familiar)</li> <li>it's free</li> <li>very easy to learn</li> <li>lets you quickly produce results</li> <li>is extremely well documented</li> <li>has a HUGE fanbase and</li> <li>got a good amount of WTFs that keep you on your toes ;-)</li> </ul> <p>So if you like to program something with quick results (and if your code is clean and you plan ahead you won't get into trouble), don't have a lot of money for software licences, (and/or are inexperienced with or still learning PHP) you can't go wrong.</p> <p>PS. I really like PHP and have used it succesfully for 10+ years. Sometimes you just don't want to solve a problem with the overhead of some languages like Java etc.</p> http://stackoverflow.com/questions/309300/defend-php-convince-me-it-isnt-horrible/1140718#1140718 2 Answer by Question Mark for Defend PHP; convince me it isn't horrible Question Mark 2009-07-16T22:47:25Z 2009-07-16T22:47:25Z <p>The php manual (i prefer the previous layout for function reference) is the clearest documentation i have ever seen, and php.net for the user contributed notes against each function/topic Genius!</p> <p>Easy to write a mess of code, but easy to look up the finer points of the language also for an experienced programmer.</p> <pre><code>$obj = (object) array('property' =&gt; $value); </code></pre> <p>Lush, i love some of the little unused corners of this language</p> http://stackoverflow.com/questions/309300/defend-php-convince-me-it-isnt-horrible/1140757#1140757 0 Answer by TokenMacGuy for Defend PHP; convince me it isn't horrible TokenMacGuy 2009-07-16T23:05:20Z 2009-07-16T23:05:20Z <p>I think PHP gets some rabid, fanatical defense for the same reason most languages get this treatment. It is often the first language learned by a new programmer, and this opinion is held as long as that programmer still hasn't been forced to learn more languages. </p> <p>PHP really is good enough for what these programmers are using it for, to put up a website and give it some brains. It supports enough kinds of programming that it doesn't really hinder them from expressing their code. And significantly, it doesn't look anything like the languages other folks are telling them to learn instead.</p> <p>The converse of this also applies equally. PHP is strongly hated by folks that learned several other languages first. It lacks the purity of lisp. It lacks the clarity of Python. It lacks the ecosystem of Java. It lacks the performance of C++. And so on. It doesn't really offer much over these languages, for the general tasks these languages are often used. Of course, while correct, they are missing a key point. It's very easy to get free web-app hosting for your favorite language, so long as your favorite language is PHP. </p> http://stackoverflow.com/questions/309300/defend-php-convince-me-it-isnt-horrible/1180268#1180268 1 Answer by MidnightLightning for Defend PHP; convince me it isn't horrible MidnightLightning 2009-07-24T21:33:23Z 2009-07-24T21:33:23Z <p>Yes, those may be all drawbacks for PHP and I can't wave all of them away, but in choosing a web programming language, here's some of the pros that put PHP ahead of the pack in my book that haven't been mentioned yet:</p> <ul> <li>Direct access to GD image manipulation from the source code. ASP could pull in ActiveX components to manipulate/output graphics, but PHP allows native manipulation of image canvasses, and can create image output rather than text/HTML.</li> <li>One programming language usable in CLI/shell scripting and web-based scripting. If you're a new programmer, learning this one language gives you a leg up on both dynamic website creation and shell script automation.</li> <li>Smarty Template engine: Yes, PHP lends itself to combine the display of a page with the processing code, but the same company that designed PHP designed a template system to go with it. Plus having the ability to combine the 'View' with the 'Controller' allows for rapid prototyping/debugging in certain situations.</li> </ul> http://stackoverflow.com/questions/309300/defend-php-convince-me-it-isnt-horrible/1182804#1182804 1 Answer by Anjisan for Defend PHP; convince me it isn't horrible Anjisan 2009-07-25T19:13:42Z 2009-07-25T19:13:42Z <p>It's not so much that the language is terrible, but that it has a tendency to attract those people who want to learn language "X" in 24 hours. What happens then is that you have people who (mostly) read a (intro) book on PHP programming and think they've completely mastered all the ins and outs of the language. Consequently, I think you have more of a glut of bad PHP programmers than anything else.</p> http://stackoverflow.com/questions/309300/defend-php-convince-me-it-isnt-horrible/1316330#1316330 2 Answer by Paxinum for Defend PHP; convince me it isn't horrible Paxinum 2009-08-22T16:17:53Z 2009-08-22T16:17:53Z <p>I like PHP because it isn't ASP.</p> http://stackoverflow.com/questions/309300/defend-php-convince-me-it-isnt-horrible/1402602#1402602 1 Answer by Spot for Defend PHP; convince me it isn't horrible Spot 2009-09-09T23:05:10Z 2009-09-09T23:05:10Z <p>PHP is what I write in most. And it is shit, you are right :)</p> <p>But, it's getting better. And there are many reasons why people would want to use it. Especially those learning a language for the first time. :)</p> http://stackoverflow.com/questions/309300/defend-php-convince-me-it-isnt-horrible/1447019#1447019 0 Answer by ola_user for Defend PHP; convince me it isn't horrible ola_user 2009-09-18T22:02:12Z 2009-09-19T14:56:46Z <p>In Perl, it's very easy to get a size of an array stored in a hash reference:</p> <pre><code>my %h = ('easy'=&gt;[1,2,4,5]); $size = @{$h{easy}}; # gives the size... </code></pre> http://stackoverflow.com/questions/309300/defend-php-convince-me-it-isnt-horrible/1556782#1556782 0 Answer by tawfekov for Defend PHP; convince me it isn't horrible tawfekov 2009-10-12T20:38:13Z 2009-10-12T20:38:13Z <p>Simply I'd say that you don't like it and if you never liked it, we won't be able to convince you .......... all of PHP developers around the world can't be wrong ! aren't we ? </p> http://stackoverflow.com/questions/309300/defend-php-convince-me-it-isnt-horrible/1556855#1556855 2 Answer by gargantaun for Defend PHP; convince me it isn't horrible gargantaun 2009-10-12T20:48:37Z 2009-10-12T22:04:02Z <p>From a personal point of view... If it weren't for PHP, and its forgiving nature, I wouldn't be a developer at all. I never studied comp-sci or development, I didn't think I'd ever become a developer, but I'm a designer, the web became what it is and development was a skill I needed to learn in order to survive. </p> <p>It's quick, dirty, easy and I love it. I now know my way around a few different languages, but I owe everything to PHP for teaching me the basics. </p> http://stackoverflow.com/questions/309300/defend-php-convince-me-it-isnt-horrible/1556912#1556912 0 Answer by pygabriel for Defend PHP; convince me it isn't horrible pygabriel 2009-10-12T21:01:25Z 2009-10-12T21:01:25Z <p>I come from a python background and I found PHP really inconsistent, totally agreeing with you. Anyway, I think that it's widespread just because it's a standard de facto.</p> http://stackoverflow.com/questions/309300/defend-php-convince-me-it-isnt-horrible/1557106#1557106 3 Answer by Gustavo Carreno for Defend PHP; convince me it isn't horrible Gustavo Carreno 2009-10-12T21:43:00Z 2009-10-12T21:43:00Z <p>Ok, let's use a nice car analogy to understand the complete pointlessness of this discussion:</p> <p>Title: Defend cars, prove me they aren't horrible.</p> <ul> <li>Cars kill more people than any other means of transport.</li> <li>Car's engines are very old technology, we haven't even got 100% outta them yet. <ul> <li>Not even 70% for that sake.</li> </ul></li> <li>Cars have been on the list of the most harmful things to the environment.</li> <li>Cars have been the victims of poor design, only a few years ago did they invent the seat belt, and don't get me started on the air bag...</li> <li>Cars have a loony behind the design process, they don't agree on the shape, the colour, the braking system, the transmission (rear/front/both), the gear system, the fuel they use and I could go on and on and on...</li> <li>The guy that invented the 3 pedals for the controls deprecated loads of other more "sensible" ways of control, like mind reading.</li> <li>Cars have this thing called extras that most vendors seam to make profit on, what's that?!?!?</li> <li>Cars have so low security that almost anyone can jump start one. That's very bad for the beginners. I think....</li> <li>If you sleep behind the wheel of a car it will crash. How did this creep into the design of this tool?</li> <li>If you don't by one of those extras that the salesman was offering, the car will not fulfil it's intended goal, take you from point A to point B. You could find yourself on point P.</li> <li>Most of the users of a car are very lacking in skills. They drive like maniacs and think the road belongs to themselves. That makes for very poor usage of the car.</li> </ul> <p>Ok, I think you get it.</p> <p>So... with all this against them, all this long, harmful, unattended, stupid and nonsensicle development in this tool, how the heck is it so popular?</p> <p>Probably because you wouldn't use a bathtub to get you from point A to point B. (The point is having a tool for each job)<br /> Probably because, even if quite full of problems, it's easy to use and is the one with the most support. (Repair shop at every corner, wide spread means of refuelling)<br /> Probably because there is a very low entry barrier to hop on board.</p> <p>Either that or, like Asterix always says: "These Romans must be mad!"</p> <p>Wouldn't you agree?</p>