vote up 206 vote down star
155

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.

So I'm genuinely curious. What am I missing? What makes PHP a good language?

Here are my reasons for disliking it:

  • PHP has inconsistent naming of built-in and library functions. Predictable naming patterns are important in any design.

  • 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.

  • 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!

  • 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!

  • 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.

  • 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.

  • 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.

  • 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.

  • PHP performance is abysmal without caching. Does anyone sell a commercial caching product for PHP? Oh, look, the designers of PHP do.

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.

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.

(However, I will readily admit that PHP is no more or less secure than any other web programming language.)

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.

So convince me otherwise!

flag
21  
There's no satisfying answer to your question. I can substitute any other language/tool for PHP in your question. – Robert S. Nov 21 '08 at 16:21
3  
It is horrible. – Andrew Medico Nov 21 '08 at 17:57
18  
it is horrible, but that doesn't matter. totally irrelevant. – Jeff Atwood Nov 22 '08 at 17:26
7  
Every symbol needs a name in the lexer/parser. T_PAAMAYIM_NEKUDOTAYIM refers to the :: symbol. It's a conceit by an Israeli developer from long ago - and it means "double-colon". :-) – staticsan Nov 25 '08 at 0:18
15  
To all people who use the "but it works" argument: One can write programs in brainfuck, one can write websites using c++, one can write GUI apps using assembler,... and guess what, it works! It's one of the most STUPID arguments, sorry. – ivan_ivanovich_ivanoff Apr 29 at 22:01
show 29 more comments

64 Answers

1 2 3 next
vote up 259 vote down check

I'll take a stab at responding to each of your bullet points

PHP has inconsistent naming of built-in and library functions. Predictable naming patterns are important in any design.

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.

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.

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".

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!

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)

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!

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.

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.

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, at all) For the record: PHP will issue an E_WARNING level error when the type of an argument matters and cannot by solved by coercion.

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.

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.

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.

I totally 100% agree with this.

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.

*Hmmm, this topic sounds desperately familiar...

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.

PHP performance is abysmal without caching. Does anyone sell a commercial caching product for PHP? Oh, look, the designers of PHP do.

Do you mean bytecode caching (like an accelerator), or output caching?

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.

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 at all.

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".

link|flag
1  
Nicely said on all counts! – Adam Franco Nov 21 '08 at 19:32
1  
The whole point is, being it a bad language in an academic fashion, there are plenty of good languages in both academic and practical fashion, and that irritates the hell out of many people. That, and the awful amount of lousy PHP around (which is just a matter of scale, I think.) – Vinko Vrsalovic Nov 22 '08 at 8:27
12  
By 'a matter of scale' I mean that if everyone and their dog were writing Python or Java instead of PHP, there would be an awful lot of ugly Python or Java code around. – Vinko Vrsalovic Nov 22 '08 at 8:29
7  
just a note - the implicit type conversion is not a static vs. dynamic typing issue. this can be done in both kinds of languages. – Claudiu Nov 23 '08 at 1:05
1  
I'm not complaining about implicit type conversion at all, when it's sensible. I guess my complaint there is that often, PHP (at least in the past) will attempt to make implicit conversions that don't make sense. – Jason L Nov 24 '08 at 16:40
show 16 more comments
vote up 5 vote down

It's free!

Oh wait...

link|flag
3  
Free as in Zend Accelerator. – Andrei Rinea Dec 17 '08 at 1:10
show 4 more comments
vote up 0 vote down

Non-programmer types can use it?

link|flag
2  
As Jason pointed out, that's not a good thing. – Elie Nov 21 '08 at 16:21
2  
Exactly. To give an extreme but valid parallel: Q: "Why should we sell guns in the high school cafeterias?" A: "Well, it makes it easier for kids to get guns." – Jason L Nov 21 '08 at 16:23
5  
@Elie and @Jason - Bullshit. Every single programmer was originally a non-programmer. Reducing the barriers to entry is a good thing. – ceejayoz Nov 22 '08 at 0:53
show 3 more comments
vote up -4 vote down

No can do... it's great, as long as you don't actually use it or support it.

link|flag
vote up 9 vote down

If you have a problem in your application, you can always find someone nearby that knows PHP.

link|flag
show 4 more comments
vote up 6 vote down

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.

link|flag
show 2 more comments
vote up 71 vote down

All your criticisms (and some more) are valid. You are allowed and even expected to hate PHP.

But, then again, it has some benefits:

  • Ubiquitous
  • Fast (especially using opcode caches)
  • Huge community (and great documentation)
  • Works

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.

link|flag
3  
I can agree with you on all but fast. If you mean fast to develop, sure. If you mean performance, to get good performance out of PHP on a large project you HAVE to use caching, and that makes things rather complex. – Jason L Nov 21 '08 at 16:32
3  
Faster than Ruby, perhaps, but I'm not a fan of Ruby either (I do respect its goals as a language, they're just counter my own). It's slower than Python or Perl, IIRC. – Jason L Nov 21 '08 at 16:36
1  
"are just annoyances, you can ignore them or work around them." I would class them as more than annoyances. One of the corner stones of good software is consistency. If your language of choice is an inconsistent mess like PHP, then the chances of consistent apps being developed on it are lower. – Chris Canal Nov 21 '08 at 17:22
show 6 more comments
vote up 11 vote down

The huge pile of

  • open source projects that run on it.
  • people who use it
  • jobs to find
  • cheap hosting providers that support it
  • ...

But for the language itself, it's sort of dynamic with decent performance? (best I can do, sorry PHP)

link|flag
show 4 more comments
vote up 24 vote down

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.

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.

Perhaps the equally relevant question to ask is what language would you consider superior?

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.

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.

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.

link|flag
2  
I work with PHP (Symfony), Django and Java (Echo2) and, for a basic content driven user facing site Symfony is the easiest. Django is more powerful but time consuming. Java is great for web apps but tricky for the basics. For some things, and despite it's flaws, PHP "just works". – Colonel Sponsz Nov 21 '08 at 17:06
show 6 more comments
vote up 49 vote down

In addition to the above, php's documentation kicks ass. http://www.php.net/rand and you go right to the doc page for it, as well as tons of user contributed notes.

PHP is by no means perfect, but it does get the job done and its Class system is better than some of the competition.

link|flag
1  
Alright, that's an answer I can get behind. The docs are good. But I'm curious; what about the class system is better? I recall it being rather short on features. Functions aren't first-class, IIRC, and you can't inherit from built-in data types, just to name a couple of shortcomings. – Jason L Nov 21 '08 at 16:41
11  
Really? My biggest complaint about PHP was the documentation. I found that the examples were often using so many shortcuts and tricks that to understand one example, I'd need to look up 5 more functions. The documentation is well-organized, and there's plenty of it, I just dont find quality in it. – nerdabilly Nov 21 '08 at 21:58
4  
I couldn't agree more, PHP's documentation is one of the best things about it, not because of the documentation per se, but because of the stellar, hand picked comments & real world examples of the code. – TravisO Nov 24 '08 at 23:39
show 7 more comments
vote up 1 vote down

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

link|flag
show 2 more comments
vote up 10 vote down

Every point you make about PHP is correct, but the alternatives aren't silver bullets either.

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.

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.

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.

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).

link|flag
2  
"such as C#, you spend a lot of time casting your data types for use in various objects." Errr, no you don't! You might want to look into generics. – Chris Canal Nov 21 '08 at 16:56
show 7 more comments
vote up 2 vote down

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.

PHP scales very easily by optimizing cache or adding more servers.

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.

link|flag
2  
"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." Both Perl and Python have functions implemented in C, so I rally don't understand this statement. – Max Lybbert Nov 25 '08 at 0:00
show 4 more comments
vote up 48 vote down

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.

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.

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 sequentially?) 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 good 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.

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.

It's just a nasty mess, a language designed by people who aren't qualified, or able, to design a language. ;)

link|flag
4  
@OP: I would suggest that you take a look at PHP again. Your observations were spot on as v4.x but with 5.3 on the horizon, parametrized queries are the norm and generally accepted best practice. – Noah Goodrich Jan 23 at 21:53
3  
It is not simple. You just only stumble across the complexities by accident, usually without noticing. There are other simple and effective scripting languages that lets the general public get things done. PHP is a messy, inconsistent language which lets the general public create problems. – jalf Mar 7 at 11:01
16  
a poor programmer is anyone who needs a language to impose design patterns for them, most of these people hate PHP – Fire Crow Mar 25 at 2:31
1  
What about it? Does it run on your average $5/month Apache webhost? If not, it's not an option for the vast majority of web development. And @Fire Crow, thank you for proving that ignorance is still flourishing among PHP developers. Presumably you actually code your websites in assembler then? – jalf Sep 10 at 9:11
2  
+1 for "So perhaps PHP's "strength" is really that no good alternative exists." Awesome point! – Ilari Kajaste Oct 15 at 9:06
show 7 more comments
vote up 11 vote down

I wouldn't say PHP is a bad language, but an ugly language. There are many impoverishing things about it compared to other languages.

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).

However, I would argue that a major reason it is so popular, so useful, is precisely because it doesn't have those features.

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.

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).

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.

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.

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.

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.

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.

link|flag
1  
Wow, as if all the people trashing PHP wasn't bad enough, you decide to go after an entire group of programmers. Elitism doesn't serve anybody. Yes, PHP is easy to learn, and doesn't look very pretty. It can also create excellent applications with a decent programmer behind it, like any language. – mabwi Nov 22 '08 at 1:55
1  
But that doesn't invalidate his point. If a language's main feature is that it's simplistic at the expense of power and "correctness" (from a design perspective), it's valid to point out that its supporters are going to tend to be "lesser" programmers in terms of knowledge and talent. – Jason L Nov 24 '08 at 16:44
show 1 more comment
vote up 0 vote down

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.

A big part of the lure of PHP is its availability and ubiquitousness.

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.

link|flag
vote up 0 vote down

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.

But then again, I use Classic ASP - what do I know? :p

link|flag
vote up 25 vote down

PHP has inconsistent naming of built-in and library functions. Predictable naming patterns are important in any design.

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.

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.

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.

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!

Backslash is used universally for escaping within strings. It has no meaning outside of one. Again, this is the sort of criticism that is meaningless after a few days using the language.

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.

I can state categorically that I have never, ever had a problem caused by accidentally turning an array into an integer.

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.

Can't personally speak to that - I haven't seen or performed benchmarks. I don't use recursion much at all, though.

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.

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?

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.

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 some 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.

PHP performance is abysmal without caching. Does anyone sell a commercial caching product for PHP? Oh, look, the designers of PHP do.

Your last, and least compelling. So what? There are a variety of non-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.

These are not your reasons for disliking PHP. These are your excuses for not even giving it a chance.

link|flag
1  
Also, regarding the "not giving it a chance", I programmed in PHP for years. Granted, this was several years ago, but I walked into the experience thinking, "Awesome, a cool new web language!" and left that experience vowing to never use it again unless I was starving and only PHP was paying. – Jason L Nov 24 '08 at 16:49
show 3 more comments
vote up 2 vote down

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.

link|flag
show 3 more comments
vote up 7 vote down

A couple of people at my university were talking about how bad PHP is recently.

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.

However, I also take slight issue with completely writing off PHP as I only entered my programming career through PHP.

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.

My explanation to them was simply: "PHP went down the simplicity road from C and I think it stopped at more or less the right place."

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.

link|flag
1  
The problem is that PHP does not nail what it was meant to do. It was meant to access a database, and produce HTML. And it sucks at both. Database access typically without parametrized queries, and (x)html in a language which doesn't support Unicode? And where you manually have to escape everything – jalf Nov 22 '08 at 13:08
2  
@Jalf - your database complaint is all about the programmers using the language, and has nothing to do with the language itself. You can write insecure code in any language – mabwi Nov 22 '08 at 15:04
show 4 more comments
vote up -7 vote down

I am not going to convince you of anything, so let me put it this way...

Microsoft Word is horrible. But, why are there lots of people with a PC running Windows running Microsoft Office using Word?

PHP is horrible. And, there are lots of people with a PC running Linux running Apache using PHP.

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.

link|flag
show 12 more comments
vote up 3 vote down

Only call-time pass by reference is deprecated. So you can function f(& $var) and when you call f($a) then $var and $a are the same in the symbol table. But you can't take function h($var) and f(& $a) without getting the warning. But even if it where, you can always use an object since they're always passed-by-reference.

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 $fname = 'func_name'; $fname(). There's also call_user_func_array() and the reflection classes to call functions and methods.

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 $needle and $haystack out of order more often than I care to admit.

As for performance, let me say that I've never used PHP without the APC 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.

To your point of ambiguity, case insensitivity is not ambiguous, I bet you know exactly what will happen if you call my_func() versus my_Func(). 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.

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.

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.

link|flag
show 6 more comments
vote up 42 vote down

Wikipedia, Facebook, Yahoo!, etc.

Nobody cares if you think PHP is horrible. Comparing programming languages is like comparing tools: Convince me hammers aren't horrible! 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.

link|flag
7  
Wikipedia is a great example. The MediaWiki Code is absolutely horrible (although they try to clean it up), yet the end result is a system that it relatively stable and just works. – Michael Stum Nov 22 '08 at 16:23
11  
A factory some decades ago created high-quality watches with glow-in-the-dark faces. Great product, fashionable and durable. Also, most of the factory workers got cancer due to the production methods which exposed them to radiation. The quality of the end-product doesn't obviate concern re:tools. – Jason L Nov 24 '08 at 16:53
3  
An extreme comparison, but it makes the logical point that the end product excuses nothing. Maybe PHP is the best production language for the web. So what? Slavery is the best crop production and factory production method. Does that excuse the valid arguments against slavery? – Jason L Nov 24 '08 at 16:56
21  
Did you just compare PHP to slavery – Kevin Nov 24 '08 at 20:44
2  
I like programmers who think what language they use determines how good their software is. – Kevin Nov 24 '08 at 20:49
show 3 more comments
vote up 0 vote down

Never understood the attraction of PHP.

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.

You can write an application for it with any language including C, VB and FreeBasic. (.BLOAT have their own 120MB run time module "solutions")

link|flag
show 1 more comment
vote up 0 vote down

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.

For comparison, last time I saw perl code I got a headache :(

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 that bad ;)

link|flag
vote up 0 vote down

Jason,

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.

Unfortunatelly i can't answer your question, because you're totally right in your post.

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.

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.

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.

link|flag
show 1 more comment
vote up 6 vote down

PHP is not horrible by any means if one consider following points:

  • Google 'PHP' and PHP related stuff: one will find results more than that of any programming language
  • PHP is open source and light weight
  • If one uses PHP for its core purpose i.e. scripting then, one won't find any significant side-effect in the language
  • 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.
  • 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.

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.

link|flag
vote up 1 vote down

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.

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.

The end result is what counts, and when it comes to defending PHP, I only have one word...

Wikipedia

link|flag
show 1 more comment
vote up 15 vote down

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.

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.

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!

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. If they are capable of learning. I've seen PHP programmers who are just incapable of getting beyond their current mediocre level.

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.

link|flag
2  
Although I am anti-PHP I must salute your objective and clear comment. – Andrei Rinea Dec 17 '08 at 1:27
show 1 more comment
vote up 6 vote down

A poor craftsman blames his tools.

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.

link|flag
1  
Perhaps, but a stupid craftsman is unaware of the nature of his tools and an unwise craftsman avoids discussing or pondering their assessment of that nature. – Jason L Nov 25 '08 at 16:49
1  
+1: More because I agree with the aphorism than the rest of the post... I wish more folks thought in this way. – TokenMacGuy Jul 16 at 22:56
1 2 3 next

Your Answer

Get an OpenID
or

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