up vote 532 down vote favorite
365
share [g+] share [fb]

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.

  • PHP has inconsistent parameter ordering of built-in functions, eg array_map vs. array_filter which is annoying in the simple cases and raises all sorts of unexpected behaviour or worse.

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

link
79  
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
61  
it is horrible, but that doesn't matter. totally irrelevant. – Jeff Atwood Nov 22 '08 at 17:26
18  
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
105  
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 '09 at 22:01
59  
"There are only two kinds of languages: the ones people complain about and the ones nobody uses" -Bjarne Stroustrup – DShook Oct 12 '09 at 21:53
show 40 more comments
feedback

locked by Robert Harvey Sep 26 '11 at 21:16

This question exists because it has historical significance, but it is not considered a good, on-topic question for this site, so please do not use it as evidence that you can ask similar questions here. More info: FAQ.

closed as not constructive by Tim Post Apr 30 '11 at 9:36

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ.

43 Answers

1 2

For me it's php.net's documentation that keeps me using it. I can look up almost any part of the language and expect a clear idea of how it works and examples on how to use it.

I am yet to find any other language that has such a complete language reference in one place.

link
5  
Many other languages have documentation available. The difference is how frequently you have to go to PHP's documentation for the order of arguments or to find out whether it's 'get_class' or 'getclass'. – meagar Jul 14 '10 at 21:02
feedback

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
1  
That should be "some 'php sucks!' jerk" – Chris Nov 23 '08 at 9:56
3  
"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 3 more comments
feedback

I consider this debate to be summed up by whether you think a good compiler/interpreter can replace a good software engineer.

The bourgeois academic route (i.e. Java) is that the compiler should be smart enough and require so much verbose explicit-ness that it will make up for mediocre programmers who tend to make the kind of errors that a compiler can catch. That's why it's great to use on enterprise applications where you tend to have hundreds of disconnected, middle-of-the-bell-curve programmers all trying to turn out a working piece of software. All the verbosity leads to more lines of code, which tends to mean more lines to debug and larger maintenance headaches.

The PHP route is to make a language that is much less verbose and explicit, which can therefore be used for great good by good programmers or great evil by mediocre programmers. My experience has been that PHP requires significantly less lines of code than most counterparts, which means less lines of potential bugs and simpler code maintenance, especially for web-based code.

For example, PHP's double dollar sign is a beautiful piece of programming art which, when used properly, can reduce code size very significantly. When used improperly, it can create bugs that are very difficult to track down.

However, PHP code without a programmer-specified coherent structure and framework is to programming what atonal composition is to music: easy to write and impossible to enjoy.

The only important factor, in my opinion, as to the "horrible-ness" or "great-ness" of a programming language is does it make your programming team and their projects more or less productive and/or buggy. Usually the answer depends on your team and/or project.

link
feedback
  • Yahoo
  • Facebook
  • Flickr
  • Wikipedia
  • WordPress

Good enough for you?

link
2  
No. Ford, Dodge, Chevy.. Great, ha? Widely spreaded... cheap and low-quality. Just like the sites you mentioned. – Andrei Rinea Dec 17 '08 at 1:41
1  
andrei, what are the good quality sites? (non php i assume?) – sarsnake Feb 13 '09 at 19:58
feedback
  1. you can do things faster in PHP than in other languages (say Java, ASP Classic, etc.). I know that some people write bad code with PHP (lots of people) but AFAIK some of them are not computer science people. They are just common people and they can learn PHP easily without bothering about OOP complexity.

  2. PHP is so small. You can have a portable one as well (use XAMPP, for example. Compare to Tomcat, GlassFish, etc. that need Java to be installed first and then set path, etc.).

  3. numbers will speak louder :D There are lots more people using PHP than other languages.

I did my projects for the past 5 years using PHP and my skill was improved by reading some code 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 is still loved by most people. ASP.NET comes next.

link
show 1 more comment
feedback

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.

It performs well in a default install, in contrast to most other things.

link
feedback

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
feedback

The one reason that I started with PHP and still like using it is that the documentation is there. The manual has every core function documented (sure, camel case, weird underscoring and argument order). If I want to know how to use something, I can find out in a manner of seconds. I've been working a bit with Perl lately, and I find it very frustrating at times because the documentation is less... easy. Not to bash Perl, because it is awesome when you know what you are doing, but PHP is the best documentation that I have found in any language I have tried to pick up.

There are ways to mitigate most of the things that can be perceived as problems, and there are some very awesome projects out there that can make even the worst code better (Zend Framework being one).

link
feedback

One of PHP's biggest problems are novices who can't take the time to do validation, etc. and this leads to security problems which causes a bad image 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 applications 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 its 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 that you need just aren't there.

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

link
feedback

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
show 1 more comment
feedback

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
feedback

Given all the reasons that it's not, there is one reason we keep going back to using it in almost every solution we provide to our clients.

It's very cost efficient! It's breadth of available programmers, it's ability to work on any OS, it's interoperability with all the major opensource data storage engines and it's ease at which you can go from quickly developed prototype to a full out robust application.

link
show 2 more comments
feedback

PHP is as bad as you make it. If you are just programming an application without thinking it through you can't expect a good program from any language.

I think the develpoment team of PHP did a really good job creating a language that people without any initial programming experience can understand. Isn't that our goal? Having a programming language that is easy to understand for everyone?

Now let's see why PHP isn't as bad as you think. First PHP is not slow as long as you program it not to be slow. Most of the time it isn't PHP that is slow but the database engine that can't get the data faster. That is why we cache the data.

It doesn't have structure: Not true. Look at all those frameworks out to give PHP structure. Kohana, Yui, Zend, Symfony (I leave CodeIgniter out because it's supporting PHP 4 and doesn't use full OOP). These frameworks even make the PHP language better than some other languages in my opinion.

In my opinion PHP is a great language as long as you think before writing anything. And with the use of a framework it becomes a bit more of a programming language than a scripting language. For now only databases and data structures are the real bottlenecks for speed.

link
feedback
1 2

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