vote up 208 vote down star
156

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
23  
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
4  
Oh, I remember another thing about PHP: T_PAAMAYIM_NEKUDOTAYIM What the...? – Leonardo Herrera Nov 21 '08 at 20:18
19  
it is horrible, but that doesn't matter. totally irrelevant. – Jeff Atwood Nov 22 '08 at 17:26
8  
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
18  
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

vote up 2 vote down

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.

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.

link|flag
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 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 1 vote down

For me, PHP is certainly not the best thing since sliced bread. However, unlike ASP, it tends to solve my problems.

link|flag
show 2 more comments
vote up 1 vote down
  • yahoo
  • facebook
  • flickr
  • wikipedia
  • wordpress

Good enough for ya?

link|flag
1  
andrei, what are the good quality sites? (non php i assume?) – gnomixa Feb 13 at 19:58
show 1 more comment
vote up 1 vote down

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.

link|flag
vote up 1 vote down

I'm not at all a trained programmer. I took Java classes and code regularly in AS 2,3 and PHP.

I did, however, program lots of things in Basic 20 years ago so i'm at least somewhat a veteran.

  1. PHP was easy to learn and feel like I did something useful.
  2. PHP has a huge community that helped me grow as a programmer.
  3. 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.

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.

link|flag
vote up 1 vote down

PHP has many drawbacks, if you think this is a problem, don't use it.

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.

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

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.

This can be a good thing as it means that all of the things you want to do, you have to actually do.

link|flag
vote up 1 vote down

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.

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.

I've also seen that PHP is fading but frameworks like Symphony and Zend Framework may be these future saviours of PHP.

link|flag
vote up 1 vote down

This is what is said in the book XSS attacks (syngress) by : Jeremiah Grossman -
Robert “RSnake” Hansen - Petko “pdp” D. Petkov - Anton Rager

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

so if php is that simple, it would be a big problem since everyone will just mess up with things on the wild!

link|flag
vote up 1 vote down

The above questions are exactly why I like it. Every single reason!

Every point in your post is about how PHP will not organize your code for you.

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.

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.

link|flag
vote up 1 vote down

PHP doesn't need defending; why should I? ;)

link|flag
vote up 1 vote down

I know this is probably dead and gone, but I cannot resist.

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

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.

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.

link|flag
show 1 more comment
vote up 1 vote down
  1. 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.
  2. 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 ... ).
  3. numbers will speak louder :D ... there are lots of people using php than other languages.

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

how about "asking" google trends ?link text

alt text

PHP still loved by most people... asp.net comes next.

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

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:

  • 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.
  • 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.
  • 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.
link|flag
vote up 1 vote down

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.

link|flag
vote up 1 vote down

I like PHP because it isn't ASP.

link|flag
vote up 1 vote down

PHP is what I write in most. And it is shit, you are right :)

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

link|flag
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 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 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 0 vote down

You really need to read Adman Bosworth's talk to iscoc04. or Computer Scientists vs. Developers (in Joel's book Best Software Writing vol 1).

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.

Type checking just isn't that useful in practice, and it gets in the way more often than it actually helps.

Developers like PHP because it's sloppy and forgiving, Computer Scientists hate it for the same reason.

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

Coz all the chicks 'digg' it? LOL no, seriously, the (www) world would be a very boring assed place if PHP wasn't around.

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

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

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.

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.

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.

link|flag
vote up 0 vote down

In Perl, it's very easy to get a size of an array stored in a hash reference:

my %h = ('easy'=>[1,2,4,5]);
$size = @{$h{easy}};   # gives the size...
link|flag
vote up 0 vote down

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 ?

link|flag
vote up 0 vote down

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.

link|flag

Your Answer

Get an OpenID
or

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