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