The languages them selfs are similar. On the other hand, what I personally don't like about PHP, is that it allows code to be written anywhere - that encourages to write bad code that is hard to debug or even trace.
Also, there's one thing I hate about PHP as well as classic ASP scripts, is that the file always starts in HTML or TEXT mode by default, and you have to use a special tag to start a code section. Personally, I believe, that the script file should start in CODE mode by default, and you should use a special construct to start an "OUTPUT" mode or something like that.
You can't compare languages without comparing libraries available to them.
I haven't touched PHP for years now, but as far as I can remember the standard libraries (so called modules) were really poor. Yes, they worked, they didn't have much bugs, but their style was just bad. There were no naming conventions - every module provided functions with it's own naming conventions. Similar modules (providing same functionality) had completely different APIs, so it was almost impossible to do a painless switch. Java and .NET, on the other hand are very strong in this field.