vote up 0 vote down star
2

Does any one have an idea about this please share with me, I heard that PHP is not that much secure than compared to Java (or JSP). Is it true? Then what are the reasons? Thanks in advance :)

flag

71% accept rate
What is the main differences between C++ and perl? – hhafez Jun 29 at 0:56

closed as not a real question by philippe , hhafez, karim79, John Saunders, Shog9 Jul 2 at 2:08

4 Answers

vote up 3 vote down check

There must be hundreds of differences between these two languages. But I'd say the key differences are:

  • Java is principly an object orientated programming language, where as PHP is principly a imperative scripting language (but does now support object orientation.)
  • Java is portable and only requires the system intended to run an applictation has the Java Platform running on it - making it arcitecture neutral. PHP can be deployed on many systems, but does not use a VM environment like Java and is therefore less portable.
  • PHPs intended purpose is to be a general-scripting langauge for web development (this is what you'll find almost all PHP applications doing). Java is a general purpose higher level programming language intended for many different purposes, something that you'll notice in the variety of packages that Java provides.

On the matter of security, read this about PHP. Since Java was originally designed with security in mind, there is little point in defending PHPs position. It is less secure. That's not to say that it's not worth considering PHP for your project, I personally have deployed numerous PHP projects with no security melt-downs (yet!)

link|flag
vote up 6 vote down

Java is an object-oriented language. PHP is a general-purpose procedural scripting language, with OOP features thrown in as an afterthought.

Application security is somewhat dependent on the choice of language, but is mostly in the hands of the developer. That is to say, it is exceedingly simple to create something insecure, not matter what language you are using.

link|flag
+1 as I was writing about the same answer =) – Jani Hartikainen Jun 28 at 17:07
4  
I doubt everyone agrees that Java is a "pure" object-oriented language. In particular, primitives and methods aren't objects. – Bastien Léonard Jun 28 at 20:41
2  
I would claim that that is not the main difference. PHP has an object model that is very closely modelled after Java. – troelskn Jun 28 at 21:04
-1 for "Java is a pure object-oriented language". See Bastien Léonard's comment. Also, PHP 5.3 introduces lambdas and closures, which Java does not have AFAIK. PHP has also some support for meta programming with its __get/__set/__call/__calStatic methods. These are far better features than having ways of defining class members as public/protected/private. – Ionut G. Stan Jun 28 at 21:15
@Ionut G. Stan, @Bastien - 'Pure' removed for correctness & popular demand. @troelskn - I was expressing the simple 'OOP vs Procedural', which I would say is the main difference, particularly when attempting to sum up in a single sentence. – karim79 Jun 29 at 1:15
vote up 8 vote down

This is a very very open ended question.

So check out these currently open and well answered PHP questions.

And these for Java

And these about PHP and Java

link|flag
vote up 2 vote down

I'd say that the main difference between the two languages is that PHP is a very dynamically typed and interpreted language (Also known as scripting languages). Java is obsessively typed and is a compiled language.

Another important difference between them is that PHP comes from an open source / Linux tradition, where the language is only one piece in the technology stack. Java on the other hand has a much larger ecosystem.

I would specifically say that the object system is not setting the two languages much apart. There are plenty of differences here too, but in general PHP's object system is closely modelled after Java's.

link|flag
+1 for "obsessively typed", although they forgot(?) about NULLs. – Ionut G. Stan Jun 28 at 21:20
-1 How on earth does "obsessively typed..." help the OP? It would make no sense to him even if he decided to google it. Also, having an object system modeled after Java's means nothing here. – karim79 Jun 29 at 1:33

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