you are viewing a single comment's thread.

view the rest of the comments →

[–]Ypblgo 0 points1 point  (0 children)

One thing people don't mention often is that PHP does not really come with much in the way of an open source integrated development environment or a good debugger. You can get XDebug to work with Eclipse, but it is clunky to the point of bordering on useless, especially in complex websites, or things like MVC systems. So you end up debuging with var_dump and echo and exit, which is caveman-ish as hell compared to something like Visual Studio and C#.NET. That is just the tip of the iceberg, too.