vote up 0 vote down star
1

A few days ago I had a discussion with some friends about whether Java and .NET are better programming languages than PHP for web development. The truth is that we could not reach an agreement and I am curious to know what you think.

We were trying to compare only the languages themselves, avoiding other factors (economical, etc...).

I know that this question would be a lot more easy to answer if I narrowed it more, but that is not what I want to ask :P To put it the other way round... Would you say that PHP is inferior to .NET/Java?

flag
8  
Better for what? – Bill the Lizard Oct 12 at 14:42
You might want to narrow the question down so it isn't so subjective, for example, give a scenario/application, then you can discuss, as I could argue that for a 3D game Java/.NET is better, but if I want to have a program that can switch between a script for a sysadmin and a webapp, then PHP would be better. Comparing could lead to arguments, as we have different applications in mind as we discuss. – James Black Oct 12 at 14:44
Ok, I narrowd the question to web development. – miguelSantirso Oct 12 at 14:49
Is a truck or a bicycle better suited for a race track? – Svante Oct 12 at 14:50

closed as subjective and argumentative by James Black, sylvarking, Juliet, Tom Hawtin - tackline, ChssPly76 Oct 12 at 17:16

4 Answers

vote up 6 vote down check

Such a discussion is useless. The languages have different usage fields, and they are good suited for their respective fields. You can't say that language A is better than language B, it can just be the better language for a particular job, and that depends on what you want to do with it.

link|flag
Yes, that was my point in the discussion and my personal opinion. However, there was some pople that said that Java/.NET are better than PHP for anything. According to their opinion, PHP was just inferior. – miguelSantirso Oct 12 at 14:46
6  
In the "right" hands Java/.NET can be just as inferior as PHP. – MiseryIndex Oct 12 at 14:50
The languages (syntaxes, allowed constructs etc.) are indeed different. I see no reason to bark about how pointless it is to compare those languages. Yes, it is subjective which one is better, but you could at least provide your reasons why you prefer the feature A in language X, but you don't really like feature B in language Y... This answer is more useless, than this question, imho. And yes, the downvote is from me. – Paulius Maruška Oct 12 at 15:00
I think this answer is better than the other one, where the author simply bashes PHP. – MiseryIndex Oct 12 at 15:05
It doesn't bash PHP. The author simply states what "features" of PHP he doesn't like. Would you say that I'm bashing Google, if I said that I don't like it's background color, because too much white make my eyes hurt? – Paulius Maruška Oct 12 at 15:26
vote up 0 vote down

The best language is the one you can complete the requirements and work in quickly. For example. PHP is great for web but pointless for 3D games (as James Black pointed out) But I havn't truly worked in PHP in more than 5 years. So I have a feeling that C#/VB.Net would be the best langauge for me to write a website with.

link|flag
I agree with you. I narrowed the question to web programming. – miguelSantirso Oct 12 at 14:50
Then I would have to say the best tool is the one you know how to use. You toss the .Net Framework or JDK at hardcore PHP dev and they might start to cry. The same would be true in the other direction as well. – Matthew Whited Oct 12 at 15:16
vote up 0 vote down

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.

link|flag
vote up 0 vote down

First off all you are comparing apples with bricks! .NET is a framework, and PHP is a language. Java is a language too but it is normally part of a framework as J2EE or J2ME (just two as example).

In the other hand, languages and are just tools, you only need to choose the right language (tool) for the right job. And remember that not always you can choose it. The language you use depends of too many factors as for example server platform, work team knowledge, security, budjet and much more.

link|flag
Yeah, I know that. But is usual to make reference to all programming languages that work with .NET as ".NET" simply. – miguelSantirso Oct 12 at 18:54
Anyway, it is true... I changed the title of the question – miguelSantirso Oct 12 at 18:55

Not the answer you're looking for? Browse other questions tagged or ask your own question.