vote up 209 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
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
19  
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
16  
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 260 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 3 vote down

Ok, let's use a nice car analogy to understand the complete pointlessness of this discussion:

Title: Defend cars, prove me they aren't horrible.

  • Cars kill more people than any other means of transport.
  • Car's engines are very old technology, we haven't even got 100% outta them yet.
    • Not even 70% for that sake.
  • Cars have been on the list of the most harmful things to the environment.
  • 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...
  • 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...
  • The guy that invented the 3 pedals for the controls deprecated loads of other more "sensible" ways of control, like mind reading.
  • Cars have this thing called extras that most vendors seam to make profit on, what's that?!?!?
  • Cars have so low security that almost anyone can jump start one. That's very bad for the beginners. I think....
  • If you sleep behind the wheel of a car it will crash. How did this creep into the design of this tool?
  • 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.
  • 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.

Ok, I think you get it.

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?

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)
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)
Probably because there is a very low entry barrier to hop on board.

Either that or, like Asterix always says: "These Romans must be mad!"

Wouldn't you agree?

link|flag
1  
What an awesome analogy! – Ilari Kajaste Oct 15 at 9:31
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
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 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

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 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 2 vote down

I like PHP because it isn't ASP.

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

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 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 2 vote down

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!

Easy to write a mess of code, but easy to look up the finer points of the language also for an experienced programmer.

$obj = (object) array('property' => $value);

Lush, i love some of the little unused corners of this language

link|flag
vote up 3 vote down

I don't object to the statement that PHP is horrible. It has a lot of problems which were all mentioned in the question...

...BUT

  • has all the features you'd expect from a C/C++ heritage (it's very familiar)
  • it's free
  • very easy to learn
  • lets you quickly produce results
  • is extremely well documented
  • has a HUGE fanbase and
  • got a good amount of WTFs that keep you on your toes ;-)

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.

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.

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

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: its scoping model.

It's infuriating to me that this doesn't work:

function outer() {
    $foo = 'bar';
    inner();
}
function inner() {
    doSomethingWith($foo);
}

$foo has not been garbage-collected—for chrissake it's still available after inner(), within outer(). It's technically still available within inner() if calling inner() 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 inner()?

link|flag
2  
You think that's a problem with PHP?! There's a truckload of trouble waiting for you if you'd work in a language that would support it -- information hiding would be gone, creating a huge tangled mess of interdependencies, e.g. library code could (unknowingly) change the way your methods work. Good luck debugging that. By putting variables in arguments, at least you know that the function only works on globals and those arguments (and only if passed by reference). – Lennaert Jul 16 at 11:22
show 1 more comment
vote up -1 vote down

in my opinion.

i love it because the code is updated very frequently by the general public rather than employees of a company (who can care less).

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.

php is universal. it can run from a window,linux,osx

wherease asp,asp.net only run on windows.

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 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 2 vote down

1) It's Free. 2) It's easier to maintain then PERL

link|flag
vote up 1 vote down

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

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

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

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

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 7 vote down

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

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.

The PHP developers constantly deprecate built-in functions and lower-level functionality. A good example is when they deprecated pass-by-reference for functions.

They depreciated call time 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 still get dumped on because some people don't know how to read.

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!

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.

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

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.

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.

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.

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.

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.

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

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.

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

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.

Are we done with this tired topic now?

link|flag
show 1 more comment
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 2 vote down

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|flag
vote up 6 vote down

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

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

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.

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.

Python just launched version 3 of itself, totally 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.

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 agree that backslash was a WTF moment.

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.

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.

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.

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.

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.

Most people I know are case insensitive, too. They can parse ALL CAPS and all lowers, and MixEd.

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.

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

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

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.

Worst of all, PHP convinces people that designing web applications is easy.

That's your "worst of all" ?? I think that's a great thing. It gets more people interested in computers & programming in general. It's a great "gateway language" that could lead to more hardcore languages in the future ;)

designing a web application that is both secure and efficient is a very difficult task.

It's a difficult task in any language.

By convincing so many to take up programming, PHP has taught an entire subgroup of programmers bad habits and bad design

Your premise is flawed, good sir. Convincing people to take up programming is entirely different from teaching bad habits & bad design. Either of those things can and does happen with any language.

It's given them access to capabilities that they lack the understanding to use safely.

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 & certified.

This has led to PHP's reputation as being insecure.

The sheer volume of "php programmers" has helped that, too. I'm sure the percentage of python & 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.

What is it that I'm missing about PHP? I'm seeing an organically-grown, poorly-managed mess of a language

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 & Exciting.

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