Why? PHP is not any worse or better than any other language.
You can have bad programmers in any language - PHP just has lots of them because it's a popular language, but there is nothing wrong with the language itself.
I would argue that effectively having roughly 3,000 keywords is a problem of the language itself.
And, saying, "PHP is not any worse or better than any other language" is saying that all languages are equal. Which, having worked in a number of languages over the years, including PHP, I know to be false. PHP is worse than many languages, and better than many for some classes of problem. It's just silly to say that all languages are equal.
PHP does not have 3000 keywords. It has an ordinary number, and the rest are functions - basically the standard library.
You are confusing the language and the library. And for that matter the library is not bad either, it does however have a few poorly named legacy functions.
> It's just silly to say that all languages are equal.
Sorry, I wasn't really trying to say that. I meant "loosely typed procedural languages" not "any other language".
You pick the language the matches what you are doing, there is nothing inherent about PHP that makes it bad.
Many (most?) of them are optional, you can compile PHP with/without certain extensions. Design wise, it seems insane - kind of like the iPhone's non-removable battery. Turns out it doesn't hurt either one's popularity though...
> PHP is not any worse or better than any other language.
I disagree. Consider the following PHP:
function inc_all($i, $xs) {
array_map($xs, function($x) use ($i) { return $x + $i; });
}
And compare it to the equivalent in, for instance, Haskell:
inc_all i = map (+ i)
Most languages can express the same concepts as PHP, but can do so much more clearly and concisely. The criticism of PHP is deserved: it's a very badly designed language.
Haskell is a functional language, PHP is not. So it's not a valid comparison.
Every time I ask people what's wrong with PHP they give me answers from functional languages. I've yet to see anyone give me an example from a procedural language.
> PHP is not any worse or better than any other language.
I also disagree, but in the sense that PHP is both better and worse than other languages, depending on your metrics. I feel that talking about code terseness is weird if it takes more effort to actually complete whatever project you're working on (due to lack of libraries, less active community, what have you).
Really? So back up the statement - tell me exactly what's bad about PHP.
And as I said before, it's a loosely typed procedural language, so don't try to compare it to a functional one. Within that type of language, what's bad about PHP?
I like PHP just fine and use it often. But if you really want an answer to that question, I'll give you one: inconsistency. Not saying I don't understand it, and I'm not saying I blame the way PHP has evolved. But it does have a lot of inconsistency.
Are you aware that your challenge is rapidly approaching "without reference to anything better, tell me about PHP's failings"?
The usual technique for evaluating something is to compare it to its competitors, and some of those are functional!
One of the bad things about PHP is that it lacks the higher-order capabilities of most functional languages. It's also inconsistent, easy to write slow code in, makes it easy to introduce massive vulnerabilities, and ugly.
PHP is not a functional language. People like functional languages in theory, for the style. But not so much when it comes to actually using them.
And what's ugly about PHP? It looks almost exactly like C.
It is inconsistent (sometimes), but it's not "easy to write slow code in", there is nothing in PHP that makes slow code more or less likely.
It's 2009. Everyone IS using PHP, and almost no one uses functional languages. Oh they get a lot of press, but few deployments.
I'm really tired of these illogical attacks on PHP. No one has ever told me a problem in PHP compared to other procedural languages except that 0 == "" is confusing.
It's always "but everyone knows it's bad". Sure go along with peer pressure if you like, but I prefer to look at reality.
PHP has to look up variables by name at runtime, because it doesn't know which ones will really exist, much less their types. It doesn't know whether any array will be used as an ordered list or a lookup table, so it has to maintain a complex data structure for both. It has to allow any value to actually be a reference which shares state with any other value. These are very expensive features which preclude a lot of optimizations, yet they're rarely used because they're more often surprising than helpful. We ported an app server from PHP to Java and picked up a 6x speed improvement with hardly any tuning.
And 0 == "" isn't really confusing. You want confusing?
There are so many languages that use a more elegant syntax, reducing the time (and pain) it takes to prevent and find errors, and add functionality.
Given that there can be both well and badly written PHP, other good language choices in general have a consistent and/or clear choice as it comes to syntax (and less keywords to memorize).
Some choices of dynamic, loosely typed languages are:
Ruby, while perl-inspired provides some very pleasant syntax.
While Python is less pretty, there is generally one good way of doing things. Python code is also often consistent across developers, even if its at a mostly superficial level.
PHP is probably more pleasant to work with than ASP/VBScript, but in 2009, with other choices, if you don't have to use PHP and don't mind trying something new, why don't you?
PHP is missing many features that good programmers need to write good code. Anonymous functions, lexical environments, the list goes on.
You can write OK code with PHP, but you can't write excellent code.
(And no, I am not implying that code is bad unless you use a lot of anonymous functions. I am just saying that it's an essential tool that you really need when certain situations arise. In PHP, those situations will have to involve hacks.)
PHP has anonymous functions, so I guess now you love PHP.
You say the "list goes on" - so I googled for a list http://www.tnx.nl/php.html. And half the things on the list aren't even true! And the rest are style choices (more functions with less parameters, or fewer functions with more parameters).
Here is a list: continuations, closures (which is what I really meant by anonymous functions and lexical environments, but I guess the term "environment" is not familiar to people that don't program CL), macros, real OO (classes/traits, first-class attributes, a metaobject protocol, etc), a sane type (constraint) system, and so on. Nobody cares about the order of arguments to a function in the standard library, that's trivial to ignore and fix. What PHP is missing is a way to extend the language, which means you are stuck with whatever the designers give you (which sucks hard).
Anyway, if you haven't used these features before, you might not see the need; see the "Blub" essay for details on that.
Adding goto just incremented the keyword count, nothing more. Bad coders will still keep on writing bad code, with or without the help of goto.